[
  {
    "path": ".travis.yml",
    "content": "# Using the container-based infrastructure\nsudo: false\n\nlanguage: perl\nperl:\n  - \"5.24\"\n  - \"5.22\"\n  - \"5.20\"\n  - \"5.18\"\n  - \"5.16\"\n  - \"5.14\"\n  - \"5.12\"\n  - \"5.10\"\n\ninstall:\n  /bin/true\n\nscript:\n  ./test.sh\n"
  },
  {
    "path": "README.md",
    "content": "# Flame Graphs visualize profiled code\n\nMain Website: http://www.brendangregg.com/flamegraphs.html\n\nExample (click to zoom):\n\n[![Example](http://www.brendangregg.com/FlameGraphs/cpu-bash-flamegraph.svg)](http://www.brendangregg.com/FlameGraphs/cpu-bash-flamegraph.svg)\n\nClick a box to zoom the Flame Graph to this stack frame only.\nTo search and highlight all stack frames matching a regular expression, click the _search_ button in the upper right corner or press Ctrl-F.\nBy default, search is case sensitive, but this can be toggled by pressing Ctrl-I or by clicking the _ic_ button in the upper right corner.\n\nOther sites:\n- The Flame Graph article in ACMQ and CACM: http://queue.acm.org/detail.cfm?id=2927301 http://cacm.acm.org/magazines/2016/6/202665-the-flame-graph/abstract\n- CPU profiling using Linux perf\\_events, DTrace, SystemTap, or ktap: http://www.brendangregg.com/FlameGraphs/cpuflamegraphs.html\n- CPU profiling using XCode Instruments: http://schani.wordpress.com/2012/11/16/flame-graphs-for-instruments/  \n- CPU profiling using Xperf.exe: http://randomascii.wordpress.com/2013/03/26/summarizing-xperf-cpu-usage-with-flame-graphs/  \n- Memory profiling: http://www.brendangregg.com/FlameGraphs/memoryflamegraphs.html  \n- Other examples, updates, and news: http://www.brendangregg.com/flamegraphs.html#Updates\n\nFlame graphs can be created in three steps:\n\n1. Capture stacks\n2. Fold stacks\n3. flamegraph.pl\n\n1\\. Capture stacks\n=================\nStack samples can be captured using Linux perf\\_events, FreeBSD pmcstat (hwpmc), DTrace, SystemTap, and many other profilers. See the stackcollapse-\\* converters.\n\n### Linux perf\\_events\n\nUsing Linux perf\\_events (aka \"perf\") to capture 60 seconds of 99 Hertz stack samples, both user- and kernel-level stacks, all processes:\n\n```\n# perf record -F 99 -a -g -- sleep 60\n# perf script > out.perf\n```\n\nNow only capturing PID 181:\n\n```\n# perf record -F 99 -p 181 -g -- sleep 60\n# perf script > out.perf\n```\n\n### DTrace\n\nUsing DTrace to capture 60 seconds of kernel stacks at 997 Hertz:\n\n```\n# dtrace -x stackframes=100 -n 'profile-997 /arg0/ { @[stack()] = count(); } tick-60s { exit(0); }' -o out.kern_stacks\n```\n\nUsing DTrace to capture 60 seconds of user-level stacks for PID 12345 at 97 Hertz:\n\n```\n# dtrace -x ustackframes=100 -n 'profile-97 /pid == 12345 && arg1/ { @[ustack()] = count(); } tick-60s { exit(0); }' -o out.user_stacks\n```\n\n60 seconds of user-level stacks, including time spent in-kernel, for PID 12345 at 97 Hertz:\n\n```\n# dtrace -x ustackframes=100 -n 'profile-97 /pid == 12345/ { @[ustack()] = count(); } tick-60s { exit(0); }' -o out.user_stacks\n```\n\nSwitch `ustack()` for `jstack()` if the application has a ustack helper to include translated frames (eg, node.js frames; see: http://dtrace.org/blogs/dap/2012/01/05/where-does-your-node-program-spend-its-time/).  The rate for user-level stack collection is deliberately slower than kernel, which is especially important when using `jstack()` as it performs additional work to translate frames.\n\n2\\. Fold stacks\n==============\nUse the stackcollapse programs to fold stack samples into single lines.  The programs provided are:\n\n- `stackcollapse.pl`: for DTrace stacks\n- `stackcollapse-perf.pl`: for Linux perf_events \"perf script\" output\n- `stackcollapse-pmc.pl`: for FreeBSD pmcstat -G stacks\n- `stackcollapse-stap.pl`: for SystemTap stacks\n- `stackcollapse-instruments.pl`: for XCode Instruments\n- `stackcollapse-vtune.pl`: for Intel VTune profiles\n- `stackcollapse-ljp.awk`: for Lightweight Java Profiler\n- `stackcollapse-jstack.pl`: for Java jstack(1) output\n- `stackcollapse-gdb.pl`: for gdb(1) stacks\n- `stackcollapse-go.pl`: for Golang pprof stacks\n- `stackcollapse-vsprof.pl`: for Microsoft Visual Studio profiles\n- `stackcollapse-wcp.pl`: for wallClockProfiler output\n\nUsage example:\n\n```\nFor perf_events:\n$ ./stackcollapse-perf.pl out.perf > out.folded\n\nFor DTrace:\n$ ./stackcollapse.pl out.kern_stacks > out.kern_folded\n```\n\nThe output looks like this:\n\n```\nunix`_sys_sysenter_post_swapgs 1401\nunix`_sys_sysenter_post_swapgs;genunix`close 5\nunix`_sys_sysenter_post_swapgs;genunix`close;genunix`closeandsetf 85\nunix`_sys_sysenter_post_swapgs;genunix`close;genunix`closeandsetf;c2audit`audit_closef 26\nunix`_sys_sysenter_post_swapgs;genunix`close;genunix`closeandsetf;c2audit`audit_setf 5\nunix`_sys_sysenter_post_swapgs;genunix`close;genunix`closeandsetf;genunix`audit_getstate 6\nunix`_sys_sysenter_post_swapgs;genunix`close;genunix`closeandsetf;genunix`audit_unfalloc 2\nunix`_sys_sysenter_post_swapgs;genunix`close;genunix`closeandsetf;genunix`closef 48\n[...]\n```\n\n3\\. flamegraph.pl\n================\nUse flamegraph.pl to render a SVG.\n\n```\n$ ./flamegraph.pl out.kern_folded > kernel.svg\n```\n\nAn advantage of having the folded input file (and why this is separate to flamegraph.pl) is that you can use grep for functions of interest. Eg:\n\n```\n$ grep cpuid out.kern_folded | ./flamegraph.pl > cpuid.svg\n```\n\nProvided Examples\n=================\n\n### Linux perf\\_events\n\nAn example output from Linux \"perf script\" is included, gzip'd, as example-perf-stacks.txt.gz. The resulting flame graph is example-perf.svg:\n\n[![Example](http://www.brendangregg.com/FlameGraphs/example-perf.svg)](http://www.brendangregg.com/FlameGraphs/example-perf.svg)\n\nYou can create this using:\n\n```\n$ gunzip -c example-perf-stacks.txt.gz | ./stackcollapse-perf.pl --all | ./flamegraph.pl --color=java --hash > example-perf.svg\n```\n\nThis shows my typical workflow: I'll gzip profiles on the target, then copy them to my laptop for analysis. Since I have hundreds of profiles, I leave them gzip'd!\n\nSince this profile included Java, I used the flamegraph.pl --color=java palette. I've also used stackcollapse-perf.pl --all, which includes all annotations that help flamegraph.pl use separate colors for kernel and user level code. The resulting flame graph uses: green == Java, yellow == C++, red == user-mode native, orange == kernel.\n\nThis profile was from an analysis of vert.x performance. The benchmark client, wrk, is also visible in the flame graph.\n\n### DTrace\n\nAn example output from DTrace is also included, example-dtrace-stacks.txt, and the resulting flame graph, example-dtrace.svg:\n\n[![Example](http://www.brendangregg.com/FlameGraphs/example-dtrace.svg)](http://www.brendangregg.com/FlameGraphs/example-dtrace.svg)\n\nYou can generate this using:\n\n```\n$ ./stackcollapse.pl example-stacks.txt | ./flamegraph.pl > example.svg\n```\n\nThis was from a particular performance investigation: the Flame Graph identified that CPU time was spent in the lofs module, and quantified that time.\n\n\nOptions\n=======\nSee the USAGE message (--help) for options:\n\nUSAGE: ./flamegraph.pl [options] infile > outfile.svg\n\n\t--title TEXT     # change title text\n\t--subtitle TEXT  # second level title (optional)\n\t--width NUM      # width of image (default 1200)\n\t--height NUM     # height of each frame (default 16)\n\t--minwidth NUM   # omit smaller functions. In pixels or use \"%\" for \n\t                 # percentage of time (default 0.1 pixels)\n\t--fonttype FONT  # font type (default \"Verdana\")\n\t--fontsize NUM   # font size (default 12)\n\t--countname TEXT # count type label (default \"samples\")\n\t--nametype TEXT  # name type label (default \"Function:\")\n\t--colors PALETTE # set color palette. choices are: hot (default), mem,\n\t                 # io, wakeup, chain, java, js, perl, red, green, blue,\n\t                 # aqua, yellow, purple, orange\n\t--bgcolors COLOR # set background colors. gradient choices are yellow\n\t                 # (default), blue, green, grey; flat colors use \"#rrggbb\"\n\t--hash           # colors are keyed by function name hash\n\t--cp             # use consistent palette (palette.map)\n\t--reverse        # generate stack-reversed flame graph\n\t--inverted       # icicle graph\n\t--flamechart     # produce a flame chart (sort by time, do not merge stacks)\n\t--negate         # switch differential hues (blue<->red)\n\t--notes TEXT     # add notes comment in SVG (for debugging)\n\t--help           # this message\n\n\teg,\n\t./flamegraph.pl --title=\"Flame Graph: malloc()\" trace.txt > graph.svg\n\nAs suggested in the example, flame graphs can process traces of any event,\nsuch as malloc()s, provided stack traces are gathered.\n\n\nConsistent Palette\n==================\nIf you use the `--cp` option, it will use the $colors selection and randomly\ngenerate the palette like normal. Any future flamegraphs created using the `--cp`\noption will use the same palette map. Any new symbols from future flamegraphs\nwill have their colors randomly generated using the $colors selection.\n\nIf you don't like the palette, just delete the palette.map file.\n\nThis allows your to change your colorscheme between flamegraphs to make the\ndifferences REALLY stand out.\n\nExample:\n\nSay we have 2 captures, one with a problem, and one when it was working\n(whatever \"it\" is):\n\n```\ncat working.folded | ./flamegraph.pl --cp > working.svg\n# this generates a palette.map, as per the normal random generated look.\n\ncat broken.folded | ./flamegraph.pl --cp --colors mem > broken.svg\n# this svg will use the same palette.map for the same events, but a very\n# different colorscheme for any new events.\n```\n\nTake a look at the demo directory for an example:\n\npalette-example-working.svg  \npalette-example-broken.svg\n"
  },
  {
    "path": "aix-perf.pl",
    "content": "#!/usr/bin/perl\n\nuse Getopt::Std;\n\ngetopt('urt');\n\nunless ($opt_r && $opt_t){\n\tprint \"Usage: $0 [ -u user] -r sample_count -t sleep_time\\n\";\n\texit(0);\n}\n\nmy $i;\nmy @proc = \"\";\nfor ($i = 0; $i < $opt_r ; $i++){\n    if ($opt_u){\n\t$proc = `/usr/sysv/bin/ps -u $opt_u `;\n\t$proc =~ s/^.*\\n//;\n\t$proc =~ s/\\s*(\\d+).*\\n/\\1 /g;\n\t@proc = split(/\\s+/,$proc);\n    } else {\n\topendir(my $dh, '/proc') || die \"Cant't open /proc: $!\";\n\t@proc = grep { /^[\\d]+$/ } readdir($dh);\n\tclosedir ($dh);\n    }\t\n\n    foreach my $pid (@proc){\n\tmy $command = \"/usr/bin/procstack $pid\";\n\tprint `$command 2>/dev/null`;\n    }\n    select(undef, undef, undef, $opt_t);\n}\n"
  },
  {
    "path": "demos/README",
    "content": "Flame Graph demos gathered and created for the talk \"Blazing Performance with\nFlame Graphs\" at USENIX/LISA 2013.\n\nThese SVGs can not be seen on github directly; save them locally first (git\nclone or download), then open them in a browser (file://...).\n"
  },
  {
    "path": "demos/cpu-zoomable.html",
    "content": "<!DOCTYPE html>\n<html>\n  <head>\n    <!--\n        NOTE: This HTML file was generated automatically by \"stackvis share\".\n        Do not edit this file directly.\n     -->\n    <meta http-equiv=\"Content-Type\" content=\"text/html;charset=utf-8\">\n    <title>Flame graph</title>\n    <style type=\"text/css\">\n        /*\n * icicle.css: styles for Icicle visualization\n */\nbody {\n\tfont-family: sans-serif;\n\tfont-size: small;\n\tpadding-left: 20px;\n\tpadding-right: 20px;\n\tcolor: #333333;\n}\n\na {\n\tcolor: #CC2900;\n}\n\ndiv#chart {\n\twidth: 100%;\n\tmargin-top: 20px;\n}\n\nrect.svBox {\n\tstroke: #fff;\n}\n\nrect.svBox:hover {\n\tcursor: pointer;\n}\n\n.svBoxLabel {\n\tcursor: pointer;\n\tfill: #333333;\n}\n\ndiv.svTooltip {\n\topacity: 0;\n\tz-index: 2;\n\tposition: absolute;           \n\theight: 3em;                 \n\twhite-space: nowrap;\n\tpadding-top: 8px;             \n\tpadding-left: 12px;\n\tpadding-right: 12px;\n\tpadding-bottom: 18px;\n\tfont-size: small;\n\tbackground: #ffffee;   \n\tborder: 0px;\n\tborder-radius: 2px;           \n\tpointer-events: none;  \n}\n\ndiv.svPopout {\n\tposition: absolute;\n\tborder-radius: 2px;\n\tborder: 2px #333333 solid;\n\tpadding: 6px;\n\tbackground-color: #ffffff;\n\topacity: 0;\n\tz-index: -1;\n\twidth: 50%;\n}\n\n.svXAxisLabel {\n\tfont-size: large;\n\tfont-weight: bold;\n\tfont-variant: small-caps;\n\ttext-align: center;\n\twidth: 100%;\n\tletter-spacing: 0.3em;\n\tmargin-bottom: 20px;\n}\n\n.svYAxisLabel {\n\tfont-size: large;\n\tfont-weight: bold;\n\tfont-variant: small-caps;\n\ttext-align: center;\n\tletter-spacing: 0.3em;\n\twhite-space: nowrap;\n}\n\n    </style>\n    <script type=\"text/javascript\">\n        /* BEGIN contents of d3.v2.js */\n        (function(){if (!Date.now) Date.now = function() {\n  return +new Date;\n};\ntry {\n  document.createElement(\"div\").style.setProperty(\"opacity\", 0, \"\");\n} catch (error) {\n  var d3_style_prototype = CSSStyleDeclaration.prototype,\n      d3_style_setProperty = d3_style_prototype.setProperty;\n  d3_style_prototype.setProperty = function(name, value, priority) {\n    d3_style_setProperty.call(this, name, value + \"\", priority);\n  };\n}\nd3 = {version: \"2.8.1\"}; // semver\nfunction d3_class(ctor, properties) {\n  try {\n    for (var key in properties) {\n      Object.defineProperty(ctor.prototype, key, {\n        value: properties[key],\n        enumerable: false\n      });\n    }\n  } catch (e) {\n    ctor.prototype = properties;\n  }\n}\nvar d3_array = d3_arraySlice; // conversion for NodeLists\n\nfunction d3_arrayCopy(pseudoarray) {\n  var i = -1, n = pseudoarray.length, array = [];\n  while (++i < n) array.push(pseudoarray[i]);\n  return array;\n}\n\nfunction d3_arraySlice(pseudoarray) {\n  return Array.prototype.slice.call(pseudoarray);\n}\n\ntry {\n  d3_array(document.documentElement.childNodes)[0].nodeType;\n} catch(e) {\n  d3_array = d3_arrayCopy;\n}\n\nvar d3_arraySubclass = [].__proto__?\n\n// Until ECMAScript supports array subclassing, prototype injection works well.\nfunction(array, prototype) {\n  array.__proto__ = prototype;\n}:\n\n// And if your browser doesn't support __proto__, we'll use direct extension.\nfunction(array, prototype) {\n  for (var property in prototype) array[property] = prototype[property];\n};\nd3.map = function(object) {\n  var map = new d3_Map;\n  for (var key in object) map.set(key, object[key]);\n  return map;\n};\n\nfunction d3_Map() {}\n\nd3_class(d3_Map, {\n  has: function(key) {\n    return d3_map_prefix + key in this;\n  },\n  get: function(key) {\n    return this[d3_map_prefix + key];\n  },\n  set: function(key, value) {\n    return this[d3_map_prefix + key] = value;\n  },\n  remove: function(key) {\n    key = d3_map_prefix + key;\n    return key in this && delete this[key];\n  },\n  keys: function() {\n    var keys = [];\n    this.forEach(function(key) { keys.push(key); });\n    return keys;\n  },\n  values: function() {\n    var values = [];\n    this.forEach(function(key, value) { values.push(value); });\n    return values;\n  },\n  entries: function() {\n    var entries = [];\n    this.forEach(function(key, value) { entries.push({key: key, value: value}); });\n    return entries;\n  },\n  forEach: function(f) {\n    for (var key in this) {\n      if (key.charCodeAt(0) === d3_map_prefixCode) {\n        f.call(this, key.substring(1), this[key]);\n      }\n    }\n  }\n});\n\nvar d3_map_prefix = \"\\0\", // prevent collision with built-ins\n    d3_map_prefixCode = d3_map_prefix.charCodeAt(0);\nfunction d3_this() {\n  return this;\n}\nd3.functor = function(v) {\n  return typeof v === \"function\" ? v : function() { return v; };\n};\n// Copies a variable number of methods from source to target.\nd3.rebind = function(target, source) {\n  var i = 1, n = arguments.length, method;\n  while (++i < n) target[method = arguments[i]] = d3_rebind(target, source, source[method]);\n  return target;\n};\n\n// Method is assumed to be a standard D3 getter-setter:\n// If passed with no arguments, gets the value.\n// If passed with arguments, sets the value and returns the target.\nfunction d3_rebind(target, source, method) {\n  return function() {\n    var value = method.apply(source, arguments);\n    return arguments.length ? target : value;\n  };\n}\nd3.ascending = function(a, b) {\n  return a < b ? -1 : a > b ? 1 : a >= b ? 0 : NaN;\n};\nd3.descending = function(a, b) {\n  return b < a ? -1 : b > a ? 1 : b >= a ? 0 : NaN;\n};\nd3.mean = function(array, f) {\n  var n = array.length,\n      a,\n      m = 0,\n      i = -1,\n      j = 0;\n  if (arguments.length === 1) {\n    while (++i < n) if (d3_number(a = array[i])) m += (a - m) / ++j;\n  } else {\n    while (++i < n) if (d3_number(a = f.call(array, array[i], i))) m += (a - m) / ++j;\n  }\n  return j ? m : undefined;\n};\nd3.median = function(array, f) {\n  if (arguments.length > 1) array = array.map(f);\n  array = array.filter(d3_number);\n  return array.length ? d3.quantile(array.sort(d3.ascending), .5) : undefined;\n};\nd3.min = function(array, f) {\n  var i = -1,\n      n = array.length,\n      a,\n      b;\n  if (arguments.length === 1) {\n    while (++i < n && ((a = array[i]) == null || a != a)) a = undefined;\n    while (++i < n) if ((b = array[i]) != null && a > b) a = b;\n  } else {\n    while (++i < n && ((a = f.call(array, array[i], i)) == null || a != a)) a = undefined;\n    while (++i < n) if ((b = f.call(array, array[i], i)) != null && a > b) a = b;\n  }\n  return a;\n};\nd3.max = function(array, f) {\n  var i = -1,\n      n = array.length,\n      a,\n      b;\n  if (arguments.length === 1) {\n    while (++i < n && ((a = array[i]) == null || a != a)) a = undefined;\n    while (++i < n) if ((b = array[i]) != null && b > a) a = b;\n  } else {\n    while (++i < n && ((a = f.call(array, array[i], i)) == null || a != a)) a = undefined;\n    while (++i < n) if ((b = f.call(array, array[i], i)) != null && b > a) a = b;\n  }\n  return a;\n};\nd3.extent = function(array, f) {\n  var i = -1,\n      n = array.length,\n      a,\n      b,\n      c;\n  if (arguments.length === 1) {\n    while (++i < n && ((a = c = array[i]) == null || a != a)) a = c = undefined;\n    while (++i < n) if ((b = array[i]) != null) {\n      if (a > b) a = b;\n      if (c < b) c = b;\n    }\n  } else {\n    while (++i < n && ((a = c = f.call(array, array[i], i)) == null || a != a)) a = undefined;\n    while (++i < n) if ((b = f.call(array, array[i], i)) != null) {\n      if (a > b) a = b;\n      if (c < b) c = b;\n    }\n  }\n  return [a, c];\n};\nd3.random = {\n  normal: function(mean, deviation) {\n    if (arguments.length < 2) deviation = 1;\n    if (arguments.length < 1) mean = 0;\n    return function() {\n      var x, y, r;\n      do {\n        x = Math.random() * 2 - 1;\n        y = Math.random() * 2 - 1;\n        r = x * x + y * y;\n      } while (!r || r > 1);\n      return mean + deviation * x * Math.sqrt(-2 * Math.log(r) / r);\n    };\n  }\n};\nfunction d3_number(x) {\n  return x != null && !isNaN(x);\n}\nd3.sum = function(array, f) {\n  var s = 0,\n      n = array.length,\n      a,\n      i = -1;\n\n  if (arguments.length === 1) {\n    while (++i < n) if (!isNaN(a = +array[i])) s += a;\n  } else {\n    while (++i < n) if (!isNaN(a = +f.call(array, array[i], i))) s += a;\n  }\n\n  return s;\n};\n// R-7 per <http://en.wikipedia.org/wiki/Quantile>\nd3.quantile = function(values, p) {\n  var H = (values.length - 1) * p + 1,\n      h = Math.floor(H),\n      v = values[h - 1],\n      e = H - h;\n  return e ? v + e * (values[h] - v) : v;\n};\nd3.transpose = function(matrix) {\n  return d3.zip.apply(d3, matrix);\n};\nd3.zip = function() {\n  if (!(n = arguments.length)) return [];\n  for (var i = -1, m = d3.min(arguments, d3_zipLength), zips = new Array(m); ++i < m;) {\n    for (var j = -1, n, zip = zips[i] = new Array(n); ++j < n;) {\n      zip[j] = arguments[j][i];\n    }\n  }\n  return zips;\n};\n\nfunction d3_zipLength(d) {\n  return d.length;\n}\nd3.bisector = function(f) {\n  return {\n    left: function(a, x, lo, hi) {\n      if (arguments.length < 3) lo = 0;\n      if (arguments.length < 4) hi = a.length;\n      while (lo < hi) {\n        var mid = lo + hi >> 1;\n        if (f.call(a, a[mid], mid) < x) lo = mid + 1;\n        else hi = mid;\n      }\n      return lo;\n    },\n    right: function(a, x, lo, hi) {\n      if (arguments.length < 3) lo = 0;\n      if (arguments.length < 4) hi = a.length;\n      while (lo < hi) {\n        var mid = lo + hi >> 1;\n        if (x < f.call(a, a[mid], mid)) hi = mid;\n        else lo = mid + 1;\n      }\n      return lo;\n    }\n  };\n};\n\nvar d3_bisector = d3.bisector(function(d) { return d; });\nd3.bisectLeft = d3_bisector.left;\nd3.bisect = d3.bisectRight = d3_bisector.right;\nd3.first = function(array, f) {\n  var i = 0,\n      n = array.length,\n      a = array[0],\n      b;\n  if (arguments.length === 1) f = d3.ascending;\n  while (++i < n) {\n    if (f.call(array, a, b = array[i]) > 0) {\n      a = b;\n    }\n  }\n  return a;\n};\nd3.last = function(array, f) {\n  var i = 0,\n      n = array.length,\n      a = array[0],\n      b;\n  if (arguments.length === 1) f = d3.ascending;\n  while (++i < n) {\n    if (f.call(array, a, b = array[i]) <= 0) {\n      a = b;\n    }\n  }\n  return a;\n};\nd3.nest = function() {\n  var nest = {},\n      keys = [],\n      sortKeys = [],\n      sortValues,\n      rollup;\n\n  function map(array, depth) {\n    if (depth >= keys.length) return rollup\n        ? rollup.call(nest, array) : (sortValues\n        ? array.sort(sortValues)\n        : array);\n\n    var i = -1,\n        n = array.length,\n        key = keys[depth++],\n        keyValue,\n        object,\n        valuesByKey = new d3_Map,\n        values,\n        o = {};\n\n    while (++i < n) {\n      if (values = valuesByKey.get(keyValue = key(object = array[i]))) {\n        values.push(object);\n      } else {\n        valuesByKey.set(keyValue, [object]);\n      }\n    }\n\n    valuesByKey.forEach(function(keyValue) {\n      o[keyValue] = map(valuesByKey.get(keyValue), depth);\n    });\n\n    return o;\n  }\n\n  function entries(map, depth) {\n    if (depth >= keys.length) return map;\n\n    var a = [],\n        sortKey = sortKeys[depth++],\n        key;\n\n    for (key in map) {\n      a.push({key: key, values: entries(map[key], depth)});\n    }\n\n    if (sortKey) a.sort(function(a, b) {\n      return sortKey(a.key, b.key);\n    });\n\n    return a;\n  }\n\n  nest.map = function(array) {\n    return map(array, 0);\n  };\n\n  nest.entries = function(array) {\n    return entries(map(array, 0), 0);\n  };\n\n  nest.key = function(d) {\n    keys.push(d);\n    return nest;\n  };\n\n  // Specifies the order for the most-recently specified key.\n  // Note: only applies to entries. Map keys are unordered!\n  nest.sortKeys = function(order) {\n    sortKeys[keys.length - 1] = order;\n    return nest;\n  };\n\n  // Specifies the order for leaf values.\n  // Applies to both maps and entries array.\n  nest.sortValues = function(order) {\n    sortValues = order;\n    return nest;\n  };\n\n  nest.rollup = function(f) {\n    rollup = f;\n    return nest;\n  };\n\n  return nest;\n};\nd3.keys = function(map) {\n  var keys = [];\n  for (var key in map) keys.push(key);\n  return keys;\n};\nd3.values = function(map) {\n  var values = [];\n  for (var key in map) values.push(map[key]);\n  return values;\n};\nd3.entries = function(map) {\n  var entries = [];\n  for (var key in map) entries.push({key: key, value: map[key]});\n  return entries;\n};\nd3.permute = function(array, indexes) {\n  var permutes = [],\n      i = -1,\n      n = indexes.length;\n  while (++i < n) permutes[i] = array[indexes[i]];\n  return permutes;\n};\nd3.merge = function(arrays) {\n  return Array.prototype.concat.apply([], arrays);\n};\nd3.split = function(array, f) {\n  var arrays = [],\n      values = [],\n      value,\n      i = -1,\n      n = array.length;\n  if (arguments.length < 2) f = d3_splitter;\n  while (++i < n) {\n    if (f.call(values, value = array[i], i)) {\n      values = [];\n    } else {\n      if (!values.length) arrays.push(values);\n      values.push(value);\n    }\n  }\n  return arrays;\n};\n\nfunction d3_splitter(d) {\n  return d == null;\n}\nfunction d3_collapse(s) {\n  return s.replace(/(^\\s+)|(\\s+$)/g, \"\").replace(/\\s+/g, \" \");\n}\nd3.range = function(start, stop, step) {\n  if (arguments.length < 3) {\n    step = 1;\n    if (arguments.length < 2) {\n      stop = start;\n      start = 0;\n    }\n  }\n  if ((stop - start) / step === Infinity) throw new Error(\"infinite range\");\n  var range = [],\n       k = d3_range_integerScale(Math.abs(step)),\n       i = -1,\n       j;\n  start *= k, stop *= k, step *= k;\n  if (step < 0) while ((j = start + step * ++i) > stop) range.push(j / k);\n  else while ((j = start + step * ++i) < stop) range.push(j / k);\n  return range;\n};\n\nfunction d3_range_integerScale(x) {\n  var k = 1;\n  while (x * k % 1) k *= 10;\n  return k;\n}\nd3.requote = function(s) {\n  return s.replace(d3_requote_re, \"\\\\$&\");\n};\n\nvar d3_requote_re = /[\\\\\\^\\$\\*\\+\\?\\|\\[\\]\\(\\)\\.\\{\\}]/g;\nd3.round = function(x, n) {\n  return n\n      ? Math.round(x * (n = Math.pow(10, n))) / n\n      : Math.round(x);\n};\nd3.xhr = function(url, mime, callback) {\n  var req = new XMLHttpRequest;\n  if (arguments.length < 3) callback = mime, mime = null;\n  else if (mime && req.overrideMimeType) req.overrideMimeType(mime);\n  req.open(\"GET\", url, true);\n  if (mime) req.setRequestHeader(\"Accept\", mime);\n  req.onreadystatechange = function() {\n    if (req.readyState === 4) callback(req.status < 300 ? req : null);\n  };\n  req.send(null);\n};\nd3.text = function(url, mime, callback) {\n  function ready(req) {\n    callback(req && req.responseText);\n  }\n  if (arguments.length < 3) {\n    callback = mime;\n    mime = null;\n  }\n  d3.xhr(url, mime, ready);\n};\nd3.json = function(url, callback) {\n  d3.text(url, \"application/json\", function(text) {\n    callback(text ? JSON.parse(text) : null);\n  });\n};\nd3.html = function(url, callback) {\n  d3.text(url, \"text/html\", function(text) {\n    if (text != null) { // Treat empty string as valid HTML.\n      var range = document.createRange();\n      range.selectNode(document.body);\n      text = range.createContextualFragment(text);\n    }\n    callback(text);\n  });\n};\nd3.xml = function(url, mime, callback) {\n  function ready(req) {\n    callback(req && req.responseXML);\n  }\n  if (arguments.length < 3) {\n    callback = mime;\n    mime = null;\n  }\n  d3.xhr(url, mime, ready);\n};\nvar d3_nsPrefix = {\n  svg: \"http://www.w3.org/2000/svg\",\n  xhtml: \"http://www.w3.org/1999/xhtml\",\n  xlink: \"http://www.w3.org/1999/xlink\",\n  xml: \"http://www.w3.org/XML/1998/namespace\",\n  xmlns: \"http://www.w3.org/2000/xmlns/\"\n};\n\nd3.ns = {\n  prefix: d3_nsPrefix,\n  qualify: function(name) {\n    var i = name.indexOf(\":\"),\n        prefix = name;\n    if (i >= 0) {\n      prefix = name.substring(0, i);\n      name = name.substring(i + 1);\n    }\n    return d3_nsPrefix.hasOwnProperty(prefix)\n        ? {space: d3_nsPrefix[prefix], local: name}\n        : name;\n  }\n};\nd3.dispatch = function() {\n  var dispatch = new d3_dispatch,\n      i = -1,\n      n = arguments.length;\n  while (++i < n) dispatch[arguments[i]] = d3_dispatch_event(dispatch);\n  return dispatch;\n};\n\nfunction d3_dispatch() {}\n\nd3_dispatch.prototype.on = function(type, listener) {\n  var i = type.indexOf(\".\"),\n      name = \"\";\n\n  // Extract optional namespace, e.g., \"click.foo\"\n  if (i > 0) {\n    name = type.substring(i + 1);\n    type = type.substring(0, i);\n  }\n\n  return arguments.length < 2\n      ? this[type].on(name)\n      : this[type].on(name, listener);\n};\n\nfunction d3_dispatch_event(dispatch) {\n  var listeners = [],\n      listenerByName = new d3_Map;\n\n  function event() {\n    var z = listeners, // defensive reference\n        i = -1,\n        n = z.length,\n        l;\n    while (++i < n) if (l = z[i].on) l.apply(this, arguments);\n    return dispatch;\n  }\n\n  event.on = function(name, listener) {\n    var l = listenerByName.get(name),\n        i;\n\n    // return the current listener, if any\n    if (arguments.length < 2) return l && l.on;\n\n    // remove the old listener, if any (with copy-on-write)\n    if (l) {\n      l.on = null;\n      listeners = listeners.slice(0, i = listeners.indexOf(l)).concat(listeners.slice(i + 1));\n      listenerByName.remove(name);\n    }\n\n    // add the new listener, if any\n    if (listener) listeners.push(listenerByName.set(name, {on: listener}));\n\n    return dispatch;\n  };\n\n  return event;\n}\n// TODO align\nd3.format = function(specifier) {\n  var match = d3_format_re.exec(specifier),\n      fill = match[1] || \" \",\n      sign = match[3] || \"\",\n      zfill = match[5],\n      width = +match[6],\n      comma = match[7],\n      precision = match[8],\n      type = match[9],\n      scale = 1,\n      suffix = \"\",\n      integer = false;\n\n  if (precision) precision = +precision.substring(1);\n\n  if (zfill) {\n    fill = \"0\"; // TODO align = \"=\";\n    if (comma) width -= Math.floor((width - 1) / 4);\n  }\n\n  switch (type) {\n    case \"n\": comma = true; type = \"g\"; break;\n    case \"%\": scale = 100; suffix = \"%\"; type = \"f\"; break;\n    case \"p\": scale = 100; suffix = \"%\"; type = \"r\"; break;\n    case \"d\": integer = true; precision = 0; break;\n    case \"s\": scale = -1; type = \"r\"; break;\n  }\n\n  // If no precision is specified for r, fallback to general notation.\n  if (type == \"r\" && !precision) type = \"g\";\n\n  type = d3_format_types.get(type) || d3_format_typeDefault;\n\n  return function(value) {\n\n    // Return the empty string for floats formatted as ints.\n    if (integer && (value % 1)) return \"\";\n\n    // Convert negative to positive, and record the sign prefix.\n    var negative = (value < 0) && (value = -value) ? \"\\u2212\" : sign;\n\n    // Apply the scale, computing it from the value's exponent for si format.\n    if (scale < 0) {\n      var prefix = d3.formatPrefix(value, precision);\n      value *= prefix.scale;\n      suffix = prefix.symbol;\n    } else {\n      value *= scale;\n    }\n\n    // Convert to the desired precision.\n    value = type(value, precision);\n\n    // If the fill character is 0, the sign and group is applied after the fill.\n    if (zfill) {\n      var length = value.length + negative.length;\n      if (length < width) value = new Array(width - length + 1).join(fill) + value;\n      if (comma) value = d3_format_group(value);\n      value = negative + value;\n    }\n\n    // Otherwise (e.g., space-filling), the sign and group is applied before.\n    else {\n      if (comma) value = d3_format_group(value);\n      value = negative + value;\n      var length = value.length;\n      if (length < width) value = new Array(width - length + 1).join(fill) + value;\n    }\n\n    return value + suffix;\n  };\n};\n\n// [[fill]align][sign][#][0][width][,][.precision][type]\nvar d3_format_re = /(?:([^{])?([<>=^]))?([+\\- ])?(#)?(0)?([0-9]+)?(,)?(\\.[0-9]+)?([a-zA-Z%])?/;\n\nvar d3_format_types = d3.map({\n  g: function(x, p) { return x.toPrecision(p); },\n  e: function(x, p) { return x.toExponential(p); },\n  f: function(x, p) { return x.toFixed(p); },\n  r: function(x, p) { return d3.round(x, p = d3_format_precision(x, p)).toFixed(Math.max(0, Math.min(20, p))); }\n});\n\nfunction d3_format_precision(x, p) {\n  return p - (x ? 1 + Math.floor(Math.log(x + Math.pow(10, 1 + Math.floor(Math.log(x) / Math.LN10) - p)) / Math.LN10) : 1);\n}\n\nfunction d3_format_typeDefault(x) {\n  return x + \"\";\n}\n\n// Apply comma grouping for thousands.\nfunction d3_format_group(value) {\n  var i = value.lastIndexOf(\".\"),\n      f = i >= 0 ? value.substring(i) : (i = value.length, \"\"),\n      t = [];\n  while (i > 0) t.push(value.substring(i -= 3, i + 3));\n  return t.reverse().join(\",\") + f;\n}\nvar d3_formatPrefixes = [\"y\",\"z\",\"a\",\"f\",\"p\",\"n\",\"μ\",\"m\",\"\",\"k\",\"M\",\"G\",\"T\",\"P\",\"E\",\"Z\",\"Y\"].map(d3_formatPrefix);\n\nd3.formatPrefix = function(value, precision) {\n  var i = 0;\n  if (value) {\n    if (value < 0) value *= -1;\n    if (precision) value = d3.round(value, d3_format_precision(value, precision));\n    i = 1 + Math.floor(1e-12 + Math.log(value) / Math.LN10);\n    i = Math.max(-24, Math.min(24, Math.floor((i <= 0 ? i + 1 : i - 1) / 3) * 3));\n  }\n  return d3_formatPrefixes[8 + i / 3];\n};\n\nfunction d3_formatPrefix(d, i) {\n  return {\n    scale: Math.pow(10, (8 - i) * 3),\n    symbol: d\n  };\n}\n\n/*\n * TERMS OF USE - EASING EQUATIONS\n *\n * Open source under the BSD License.\n *\n * Copyright 2001 Robert Penner\n * All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, are permitted provided that the following conditions are met:\n *\n * - Redistributions of source code must retain the above copyright notice, this\n *   list of conditions and the following disclaimer.\n *\n * - Redistributions in binary form must reproduce the above copyright notice,\n *   this list of conditions and the following disclaimer in the documentation\n *   and/or other materials provided with the distribution.\n *\n * - Neither the name of the author nor the names of contributors may be used to\n *   endorse or promote products derived from this software without specific\n *   prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE\n * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n * POSSIBILITY OF SUCH DAMAGE.\n */\n\nvar d3_ease_quad = d3_ease_poly(2),\n    d3_ease_cubic = d3_ease_poly(3),\n    d3_ease_default = function() { return d3_ease_identity; };\n\nvar d3_ease = d3.map({\n  linear: d3_ease_default,\n  poly: d3_ease_poly,\n  quad: function() { return d3_ease_quad; },\n  cubic: function() { return d3_ease_cubic; },\n  sin: function() { return d3_ease_sin; },\n  exp: function() { return d3_ease_exp; },\n  circle: function() { return d3_ease_circle; },\n  elastic: d3_ease_elastic,\n  back: d3_ease_back,\n  bounce: function() { return d3_ease_bounce; }\n});\n\nvar d3_ease_mode = d3.map({\n  \"in\": d3_ease_identity,\n  \"out\": d3_ease_reverse,\n  \"in-out\": d3_ease_reflect,\n  \"out-in\": function(f) { return d3_ease_reflect(d3_ease_reverse(f)); }\n});\n\nd3.ease = function(name) {\n  var i = name.indexOf(\"-\"),\n      t = i >= 0 ? name.substring(0, i) : name,\n      m = i >= 0 ? name.substring(i + 1) : \"in\";\n  t = d3_ease.get(t) || d3_ease_default;\n  m = d3_ease_mode.get(m) || d3_ease_identity;\n  return d3_ease_clamp(m(t.apply(null, Array.prototype.slice.call(arguments, 1))));\n};\n\nfunction d3_ease_clamp(f) {\n  return function(t) {\n    return t <= 0 ? 0 : t >= 1 ? 1 : f(t);\n  };\n}\n\nfunction d3_ease_reverse(f) {\n  return function(t) {\n    return 1 - f(1 - t);\n  };\n}\n\nfunction d3_ease_reflect(f) {\n  return function(t) {\n    return .5 * (t < .5 ? f(2 * t) : (2 - f(2 - 2 * t)));\n  };\n}\n\nfunction d3_ease_identity(t) {\n  return t;\n}\n\nfunction d3_ease_poly(e) {\n  return function(t) {\n    return Math.pow(t, e);\n  };\n}\n\nfunction d3_ease_sin(t) {\n  return 1 - Math.cos(t * Math.PI / 2);\n}\n\nfunction d3_ease_exp(t) {\n  return Math.pow(2, 10 * (t - 1));\n}\n\nfunction d3_ease_circle(t) {\n  return 1 - Math.sqrt(1 - t * t);\n}\n\nfunction d3_ease_elastic(a, p) {\n  var s;\n  if (arguments.length < 2) p = 0.45;\n  if (arguments.length < 1) { a = 1; s = p / 4; }\n  else s = p / (2 * Math.PI) * Math.asin(1 / a);\n  return function(t) {\n    return 1 + a * Math.pow(2, 10 * -t) * Math.sin((t - s) * 2 * Math.PI / p);\n  };\n}\n\nfunction d3_ease_back(s) {\n  if (!s) s = 1.70158;\n  return function(t) {\n    return t * t * ((s + 1) * t - s);\n  };\n}\n\nfunction d3_ease_bounce(t) {\n  return t < 1 / 2.75 ? 7.5625 * t * t\n      : t < 2 / 2.75 ? 7.5625 * (t -= 1.5 / 2.75) * t + .75\n      : t < 2.5 / 2.75 ? 7.5625 * (t -= 2.25 / 2.75) * t + .9375\n      : 7.5625 * (t -= 2.625 / 2.75) * t + .984375;\n}\nd3.event = null;\n\nfunction d3_eventCancel() {\n  d3.event.stopPropagation();\n  d3.event.preventDefault();\n}\n\nfunction d3_eventSource() {\n  var e = d3.event, s;\n  while (s = e.sourceEvent) e = s;\n  return e;\n}\n\n// Like d3.dispatch, but for custom events abstracting native UI events. These\n// events have a target component (such as a brush), a target element (such as\n// the svg:g element containing the brush) and the standard arguments `d` (the\n// target element's data) and `i` (the selection index of the target element).\nfunction d3_eventDispatch(target) {\n  var dispatch = new d3_dispatch,\n      i = 0,\n      n = arguments.length;\n\n  while (++i < n) dispatch[arguments[i]] = d3_dispatch_event(dispatch);\n\n  // Creates a dispatch context for the specified `thiz` (typically, the target\n  // DOM element that received the source event) and `argumentz` (typically, the\n  // data `d` and index `i` of the target element). The returned function can be\n  // used to dispatch an event to any registered listeners; the function takes a\n  // single argument as input, being the event to dispatch. The event must have\n  // a \"type\" attribute which corresponds to a type registered in the\n  // constructor. This context will automatically populate the \"sourceEvent\" and\n  // \"target\" attributes of the event, as well as setting the `d3.event` global\n  // for the duration of the notification.\n  dispatch.of = function(thiz, argumentz) {\n    return function(e1) {\n      try {\n        var e0 =\n        e1.sourceEvent = d3.event;\n        e1.target = target;\n        d3.event = e1;\n        dispatch[e1.type].apply(thiz, argumentz);\n      } finally {\n        d3.event = e0;\n      }\n    };\n  };\n\n  return dispatch;\n}\nd3.interpolate = function(a, b) {\n  var i = d3.interpolators.length, f;\n  while (--i >= 0 && !(f = d3.interpolators[i](a, b)));\n  return f;\n};\n\nd3.interpolateNumber = function(a, b) {\n  b -= a;\n  return function(t) { return a + b * t; };\n};\n\nd3.interpolateRound = function(a, b) {\n  b -= a;\n  return function(t) { return Math.round(a + b * t); };\n};\n\nd3.interpolateString = function(a, b) {\n  var m, // current match\n      i, // current index\n      j, // current index (for coallescing)\n      s0 = 0, // start index of current string prefix\n      s1 = 0, // end index of current string prefix\n      s = [], // string constants and placeholders\n      q = [], // number interpolators\n      n, // q.length\n      o;\n\n  // Reset our regular expression!\n  d3_interpolate_number.lastIndex = 0;\n\n  // Find all numbers in b.\n  for (i = 0; m = d3_interpolate_number.exec(b); ++i) {\n    if (m.index) s.push(b.substring(s0, s1 = m.index));\n    q.push({i: s.length, x: m[0]});\n    s.push(null);\n    s0 = d3_interpolate_number.lastIndex;\n  }\n  if (s0 < b.length) s.push(b.substring(s0));\n\n  // Find all numbers in a.\n  for (i = 0, n = q.length; (m = d3_interpolate_number.exec(a)) && i < n; ++i) {\n    o = q[i];\n    if (o.x == m[0]) { // The numbers match, so coallesce.\n      if (o.i) {\n        if (s[o.i + 1] == null) { // This match is followed by another number.\n          s[o.i - 1] += o.x;\n          s.splice(o.i, 1);\n          for (j = i + 1; j < n; ++j) q[j].i--;\n        } else { // This match is followed by a string, so coallesce twice.\n          s[o.i - 1] += o.x + s[o.i + 1];\n          s.splice(o.i, 2);\n          for (j = i + 1; j < n; ++j) q[j].i -= 2;\n        }\n      } else {\n          if (s[o.i + 1] == null) { // This match is followed by another number.\n          s[o.i] = o.x;\n        } else { // This match is followed by a string, so coallesce twice.\n          s[o.i] = o.x + s[o.i + 1];\n          s.splice(o.i + 1, 1);\n          for (j = i + 1; j < n; ++j) q[j].i--;\n        }\n      }\n      q.splice(i, 1);\n      n--;\n      i--;\n    } else {\n      o.x = d3.interpolateNumber(parseFloat(m[0]), parseFloat(o.x));\n    }\n  }\n\n  // Remove any numbers in b not found in a.\n  while (i < n) {\n    o = q.pop();\n    if (s[o.i + 1] == null) { // This match is followed by another number.\n      s[o.i] = o.x;\n    } else { // This match is followed by a string, so coallesce twice.\n      s[o.i] = o.x + s[o.i + 1];\n      s.splice(o.i + 1, 1);\n    }\n    n--;\n  }\n\n  // Special optimization for only a single match.\n  if (s.length === 1) {\n    return s[0] == null ? q[0].x : function() { return b; };\n  }\n\n  // Otherwise, interpolate each of the numbers and rejoin the string.\n  return function(t) {\n    for (i = 0; i < n; ++i) s[(o = q[i]).i] = o.x(t);\n    return s.join(\"\");\n  };\n};\n\nd3.interpolateTransform = function(a, b) {\n  var s = [], // string constants and placeholders\n      q = [], // number interpolators\n      n,\n      A = d3.transform(a),\n      B = d3.transform(b),\n      ta = A.translate,\n      tb = B.translate,\n      ra = A.rotate,\n      rb = B.rotate,\n      wa = A.skew,\n      wb = B.skew,\n      ka = A.scale,\n      kb = B.scale;\n\n  if (ta[0] != tb[0] || ta[1] != tb[1]) {\n    s.push(\"translate(\", null, \",\", null, \")\");\n    q.push({i: 1, x: d3.interpolateNumber(ta[0], tb[0])}, {i: 3, x: d3.interpolateNumber(ta[1], tb[1])});\n  } else if (tb[0] || tb[1]) {\n    s.push(\"translate(\" + tb + \")\");\n  } else {\n    s.push(\"\");\n  }\n\n  if (ra != rb) {\n    q.push({i: s.push(s.pop() + \"rotate(\", null, \")\") - 2, x: d3.interpolateNumber(ra, rb)});\n  } else if (rb) {\n    s.push(s.pop() + \"rotate(\" + rb + \")\");\n  }\n\n  if (wa != wb) {\n    q.push({i: s.push(s.pop() + \"skewX(\", null, \")\") - 2, x: d3.interpolateNumber(wa, wb)});\n  } else if (wb) {\n    s.push(s.pop() + \"skewX(\" + wb + \")\");\n  }\n\n  if (ka[0] != kb[0] || ka[1] != kb[1]) {\n    n = s.push(s.pop() + \"scale(\", null, \",\", null, \")\");\n    q.push({i: n - 4, x: d3.interpolateNumber(ka[0], kb[0])}, {i: n - 2, x: d3.interpolateNumber(ka[1], kb[1])});\n  } else if (kb[0] != 1 || kb[1] != 1) {\n    s.push(s.pop() + \"scale(\" + kb + \")\");\n  }\n\n  n = q.length;\n  return function(t) {\n    var i = -1, o;\n    while (++i < n) s[(o = q[i]).i] = o.x(t);\n    return s.join(\"\");\n  };\n};\n\nd3.interpolateRgb = function(a, b) {\n  a = d3.rgb(a);\n  b = d3.rgb(b);\n  var ar = a.r,\n      ag = a.g,\n      ab = a.b,\n      br = b.r - ar,\n      bg = b.g - ag,\n      bb = b.b - ab;\n  return function(t) {\n    return \"#\"\n        + d3_rgb_hex(Math.round(ar + br * t))\n        + d3_rgb_hex(Math.round(ag + bg * t))\n        + d3_rgb_hex(Math.round(ab + bb * t));\n  };\n};\n\n// interpolates HSL space, but outputs RGB string (for compatibility)\nd3.interpolateHsl = function(a, b) {\n  a = d3.hsl(a);\n  b = d3.hsl(b);\n  var h0 = a.h,\n      s0 = a.s,\n      l0 = a.l,\n      h1 = b.h - h0,\n      s1 = b.s - s0,\n      l1 = b.l - l0;\n  return function(t) {\n    return d3_hsl_rgb(h0 + h1 * t, s0 + s1 * t, l0 + l1 * t).toString();\n  };\n};\n\nd3.interpolateArray = function(a, b) {\n  var x = [],\n      c = [],\n      na = a.length,\n      nb = b.length,\n      n0 = Math.min(a.length, b.length),\n      i;\n  for (i = 0; i < n0; ++i) x.push(d3.interpolate(a[i], b[i]));\n  for (; i < na; ++i) c[i] = a[i];\n  for (; i < nb; ++i) c[i] = b[i];\n  return function(t) {\n    for (i = 0; i < n0; ++i) c[i] = x[i](t);\n    return c;\n  };\n};\n\nd3.interpolateObject = function(a, b) {\n  var i = {},\n      c = {},\n      k;\n  for (k in a) {\n    if (k in b) {\n      i[k] = d3_interpolateByName(k)(a[k], b[k]);\n    } else {\n      c[k] = a[k];\n    }\n  }\n  for (k in b) {\n    if (!(k in a)) {\n      c[k] = b[k];\n    }\n  }\n  return function(t) {\n    for (k in i) c[k] = i[k](t);\n    return c;\n  };\n}\n\nvar d3_interpolate_number = /[-+]?(?:\\d*\\.?\\d+)(?:[eE][-+]?\\d+)?/g;\n\nfunction d3_interpolateByName(n) {\n  return n == \"transform\"\n      ? d3.interpolateTransform\n      : d3.interpolate;\n}\n\nd3.interpolators = [\n  d3.interpolateObject,\n  function(a, b) { return (b instanceof Array) && d3.interpolateArray(a, b); },\n  function(a, b) { return (typeof a === \"string\" || typeof b === \"string\") && d3.interpolateString(a + \"\", b + \"\"); },\n  function(a, b) { return (typeof b === \"string\" ? d3_rgb_names.has(b) || /^(#|rgb\\(|hsl\\()/.test(b) : b instanceof d3_Rgb || b instanceof d3_Hsl) && d3.interpolateRgb(a, b); },\n  function(a, b) { return !isNaN(a = +a) && !isNaN(b = +b) && d3.interpolateNumber(a, b); }\n];\nfunction d3_uninterpolateNumber(a, b) {\n  b = b - (a = +a) ? 1 / (b - a) : 0;\n  return function(x) { return (x - a) * b; };\n}\n\nfunction d3_uninterpolateClamp(a, b) {\n  b = b - (a = +a) ? 1 / (b - a) : 0;\n  return function(x) { return Math.max(0, Math.min(1, (x - a) * b)); };\n}\nd3.rgb = function(r, g, b) {\n  return arguments.length === 1\n      ? (r instanceof d3_Rgb ? d3_rgb(r.r, r.g, r.b)\n      : d3_rgb_parse(\"\" + r, d3_rgb, d3_hsl_rgb))\n      : d3_rgb(~~r, ~~g, ~~b);\n};\n\nfunction d3_rgb(r, g, b) {\n  return new d3_Rgb(r, g, b);\n}\n\nfunction d3_Rgb(r, g, b) {\n  this.r = r;\n  this.g = g;\n  this.b = b;\n}\n\nd3_Rgb.prototype.brighter = function(k) {\n  k = Math.pow(0.7, arguments.length ? k : 1);\n  var r = this.r,\n      g = this.g,\n      b = this.b,\n      i = 30;\n  if (!r && !g && !b) return d3_rgb(i, i, i);\n  if (r && r < i) r = i;\n  if (g && g < i) g = i;\n  if (b && b < i) b = i;\n  return d3_rgb(\n      Math.min(255, Math.floor(r / k)),\n      Math.min(255, Math.floor(g / k)),\n      Math.min(255, Math.floor(b / k)));\n};\n\nd3_Rgb.prototype.darker = function(k) {\n  k = Math.pow(0.7, arguments.length ? k : 1);\n  return d3_rgb(\n      Math.floor(k * this.r),\n      Math.floor(k * this.g),\n      Math.floor(k * this.b));\n};\n\nd3_Rgb.prototype.hsl = function() {\n  return d3_rgb_hsl(this.r, this.g, this.b);\n};\n\nd3_Rgb.prototype.toString = function() {\n  return \"#\" + d3_rgb_hex(this.r) + d3_rgb_hex(this.g) + d3_rgb_hex(this.b);\n};\n\nfunction d3_rgb_hex(v) {\n  return v < 0x10\n      ? \"0\" + Math.max(0, v).toString(16)\n      : Math.min(255, v).toString(16);\n}\n\nfunction d3_rgb_parse(format, rgb, hsl) {\n  var r = 0, // red channel; int in [0, 255]\n      g = 0, // green channel; int in [0, 255]\n      b = 0, // blue channel; int in [0, 255]\n      m1, // CSS color specification match\n      m2, // CSS color specification type (e.g., rgb)\n      name;\n\n  /* Handle hsl, rgb. */\n  m1 = /([a-z]+)\\((.*)\\)/i.exec(format);\n  if (m1) {\n    m2 = m1[2].split(\",\");\n    switch (m1[1]) {\n      case \"hsl\": {\n        return hsl(\n          parseFloat(m2[0]), // degrees\n          parseFloat(m2[1]) / 100, // percentage\n          parseFloat(m2[2]) / 100 // percentage\n        );\n      }\n      case \"rgb\": {\n        return rgb(\n          d3_rgb_parseNumber(m2[0]),\n          d3_rgb_parseNumber(m2[1]),\n          d3_rgb_parseNumber(m2[2])\n        );\n      }\n    }\n  }\n\n  /* Named colors. */\n  if (name = d3_rgb_names.get(format)) return rgb(name.r, name.g, name.b);\n\n  /* Hexadecimal colors: #rgb and #rrggbb. */\n  if (format != null && format.charAt(0) === \"#\") {\n    if (format.length === 4) {\n      r = format.charAt(1); r += r;\n      g = format.charAt(2); g += g;\n      b = format.charAt(3); b += b;\n    } else if (format.length === 7) {\n      r = format.substring(1, 3);\n      g = format.substring(3, 5);\n      b = format.substring(5, 7);\n    }\n    r = parseInt(r, 16);\n    g = parseInt(g, 16);\n    b = parseInt(b, 16);\n  }\n\n  return rgb(r, g, b);\n}\n\nfunction d3_rgb_hsl(r, g, b) {\n  var min = Math.min(r /= 255, g /= 255, b /= 255),\n      max = Math.max(r, g, b),\n      d = max - min,\n      h,\n      s,\n      l = (max + min) / 2;\n  if (d) {\n    s = l < .5 ? d / (max + min) : d / (2 - max - min);\n    if (r == max) h = (g - b) / d + (g < b ? 6 : 0);\n    else if (g == max) h = (b - r) / d + 2;\n    else h = (r - g) / d + 4;\n    h *= 60;\n  } else {\n    s = h = 0;\n  }\n  return d3_hsl(h, s, l);\n}\n\nfunction d3_rgb_parseNumber(c) { // either integer or percentage\n  var f = parseFloat(c);\n  return c.charAt(c.length - 1) === \"%\" ? Math.round(f * 2.55) : f;\n}\n\nvar d3_rgb_names = d3.map({\n  aliceblue: \"#f0f8ff\",\n  antiquewhite: \"#faebd7\",\n  aqua: \"#00ffff\",\n  aquamarine: \"#7fffd4\",\n  azure: \"#f0ffff\",\n  beige: \"#f5f5dc\",\n  bisque: \"#ffe4c4\",\n  black: \"#000000\",\n  blanchedalmond: \"#ffebcd\",\n  blue: \"#0000ff\",\n  blueviolet: \"#8a2be2\",\n  brown: \"#a52a2a\",\n  burlywood: \"#deb887\",\n  cadetblue: \"#5f9ea0\",\n  chartreuse: \"#7fff00\",\n  chocolate: \"#d2691e\",\n  coral: \"#ff7f50\",\n  cornflowerblue: \"#6495ed\",\n  cornsilk: \"#fff8dc\",\n  crimson: \"#dc143c\",\n  cyan: \"#00ffff\",\n  darkblue: \"#00008b\",\n  darkcyan: \"#008b8b\",\n  darkgoldenrod: \"#b8860b\",\n  darkgray: \"#a9a9a9\",\n  darkgreen: \"#006400\",\n  darkgrey: \"#a9a9a9\",\n  darkkhaki: \"#bdb76b\",\n  darkmagenta: \"#8b008b\",\n  darkolivegreen: \"#556b2f\",\n  darkorange: \"#ff8c00\",\n  darkorchid: \"#9932cc\",\n  darkred: \"#8b0000\",\n  darksalmon: \"#e9967a\",\n  darkseagreen: \"#8fbc8f\",\n  darkslateblue: \"#483d8b\",\n  darkslategray: \"#2f4f4f\",\n  darkslategrey: \"#2f4f4f\",\n  darkturquoise: \"#00ced1\",\n  darkviolet: \"#9400d3\",\n  deeppink: \"#ff1493\",\n  deepskyblue: \"#00bfff\",\n  dimgray: \"#696969\",\n  dimgrey: \"#696969\",\n  dodgerblue: \"#1e90ff\",\n  firebrick: \"#b22222\",\n  floralwhite: \"#fffaf0\",\n  forestgreen: \"#228b22\",\n  fuchsia: \"#ff00ff\",\n  gainsboro: \"#dcdcdc\",\n  ghostwhite: \"#f8f8ff\",\n  gold: \"#ffd700\",\n  goldenrod: \"#daa520\",\n  gray: \"#808080\",\n  green: \"#008000\",\n  greenyellow: \"#adff2f\",\n  grey: \"#808080\",\n  honeydew: \"#f0fff0\",\n  hotpink: \"#ff69b4\",\n  indianred: \"#cd5c5c\",\n  indigo: \"#4b0082\",\n  ivory: \"#fffff0\",\n  khaki: \"#f0e68c\",\n  lavender: \"#e6e6fa\",\n  lavenderblush: \"#fff0f5\",\n  lawngreen: \"#7cfc00\",\n  lemonchiffon: \"#fffacd\",\n  lightblue: \"#add8e6\",\n  lightcoral: \"#f08080\",\n  lightcyan: \"#e0ffff\",\n  lightgoldenrodyellow: \"#fafad2\",\n  lightgray: \"#d3d3d3\",\n  lightgreen: \"#90ee90\",\n  lightgrey: \"#d3d3d3\",\n  lightpink: \"#ffb6c1\",\n  lightsalmon: \"#ffa07a\",\n  lightseagreen: \"#20b2aa\",\n  lightskyblue: \"#87cefa\",\n  lightslategray: \"#778899\",\n  lightslategrey: \"#778899\",\n  lightsteelblue: \"#b0c4de\",\n  lightyellow: \"#ffffe0\",\n  lime: \"#00ff00\",\n  limegreen: \"#32cd32\",\n  linen: \"#faf0e6\",\n  magenta: \"#ff00ff\",\n  maroon: \"#800000\",\n  mediumaquamarine: \"#66cdaa\",\n  mediumblue: \"#0000cd\",\n  mediumorchid: \"#ba55d3\",\n  mediumpurple: \"#9370db\",\n  mediumseagreen: \"#3cb371\",\n  mediumslateblue: \"#7b68ee\",\n  mediumspringgreen: \"#00fa9a\",\n  mediumturquoise: \"#48d1cc\",\n  mediumvioletred: \"#c71585\",\n  midnightblue: \"#191970\",\n  mintcream: \"#f5fffa\",\n  mistyrose: \"#ffe4e1\",\n  moccasin: \"#ffe4b5\",\n  navajowhite: \"#ffdead\",\n  navy: \"#000080\",\n  oldlace: \"#fdf5e6\",\n  olive: \"#808000\",\n  olivedrab: \"#6b8e23\",\n  orange: \"#ffa500\",\n  orangered: \"#ff4500\",\n  orchid: \"#da70d6\",\n  palegoldenrod: \"#eee8aa\",\n  palegreen: \"#98fb98\",\n  paleturquoise: \"#afeeee\",\n  palevioletred: \"#db7093\",\n  papayawhip: \"#ffefd5\",\n  peachpuff: \"#ffdab9\",\n  peru: \"#cd853f\",\n  pink: \"#ffc0cb\",\n  plum: \"#dda0dd\",\n  powderblue: \"#b0e0e6\",\n  purple: \"#800080\",\n  red: \"#ff0000\",\n  rosybrown: \"#bc8f8f\",\n  royalblue: \"#4169e1\",\n  saddlebrown: \"#8b4513\",\n  salmon: \"#fa8072\",\n  sandybrown: \"#f4a460\",\n  seagreen: \"#2e8b57\",\n  seashell: \"#fff5ee\",\n  sienna: \"#a0522d\",\n  silver: \"#c0c0c0\",\n  skyblue: \"#87ceeb\",\n  slateblue: \"#6a5acd\",\n  slategray: \"#708090\",\n  slategrey: \"#708090\",\n  snow: \"#fffafa\",\n  springgreen: \"#00ff7f\",\n  steelblue: \"#4682b4\",\n  tan: \"#d2b48c\",\n  teal: \"#008080\",\n  thistle: \"#d8bfd8\",\n  tomato: \"#ff6347\",\n  turquoise: \"#40e0d0\",\n  violet: \"#ee82ee\",\n  wheat: \"#f5deb3\",\n  white: \"#ffffff\",\n  whitesmoke: \"#f5f5f5\",\n  yellow: \"#ffff00\",\n  yellowgreen: \"#9acd32\"\n});\n\nd3_rgb_names.forEach(function(key, value) {\n  d3_rgb_names.set(key, d3_rgb_parse(value, d3_rgb, d3_hsl_rgb));\n});\nd3.hsl = function(h, s, l) {\n  return arguments.length === 1\n      ? (h instanceof d3_Hsl ? d3_hsl(h.h, h.s, h.l)\n      : d3_rgb_parse(\"\" + h, d3_rgb_hsl, d3_hsl))\n      : d3_hsl(+h, +s, +l);\n};\n\nfunction d3_hsl(h, s, l) {\n  return new d3_Hsl(h, s, l);\n}\n\nfunction d3_Hsl(h, s, l) {\n  this.h = h;\n  this.s = s;\n  this.l = l;\n}\n\nd3_Hsl.prototype.brighter = function(k) {\n  k = Math.pow(0.7, arguments.length ? k : 1);\n  return d3_hsl(this.h, this.s, this.l / k);\n};\n\nd3_Hsl.prototype.darker = function(k) {\n  k = Math.pow(0.7, arguments.length ? k : 1);\n  return d3_hsl(this.h, this.s, k * this.l);\n};\n\nd3_Hsl.prototype.rgb = function() {\n  return d3_hsl_rgb(this.h, this.s, this.l);\n};\n\nd3_Hsl.prototype.toString = function() {\n  return this.rgb().toString();\n};\n\nfunction d3_hsl_rgb(h, s, l) {\n  var m1,\n      m2;\n\n  /* Some simple corrections for h, s and l. */\n  h = h % 360; if (h < 0) h += 360;\n  s = s < 0 ? 0 : s > 1 ? 1 : s;\n  l = l < 0 ? 0 : l > 1 ? 1 : l;\n\n  /* From FvD 13.37, CSS Color Module Level 3 */\n  m2 = l <= .5 ? l * (1 + s) : l + s - l * s;\n  m1 = 2 * l - m2;\n\n  function v(h) {\n    if (h > 360) h -= 360;\n    else if (h < 0) h += 360;\n    if (h < 60) return m1 + (m2 - m1) * h / 60;\n    if (h < 180) return m2;\n    if (h < 240) return m1 + (m2 - m1) * (240 - h) / 60;\n    return m1;\n  }\n\n  function vv(h) {\n    return Math.round(v(h) * 255);\n  }\n\n  return d3_rgb(vv(h + 120), vv(h), vv(h - 120));\n}\nfunction d3_selection(groups) {\n  d3_arraySubclass(groups, d3_selectionPrototype);\n  return groups;\n}\n\nvar d3_select = function(s, n) { return n.querySelector(s); },\n    d3_selectAll = function(s, n) { return n.querySelectorAll(s); },\n    d3_selectRoot = document.documentElement,\n    d3_selectMatcher = d3_selectRoot.matchesSelector || d3_selectRoot.webkitMatchesSelector || d3_selectRoot.mozMatchesSelector || d3_selectRoot.msMatchesSelector || d3_selectRoot.oMatchesSelector,\n    d3_selectMatches = function(n, s) { return d3_selectMatcher.call(n, s); };\n\n// Prefer Sizzle, if available.\nif (typeof Sizzle === \"function\") {\n  d3_select = function(s, n) { return Sizzle(s, n)[0]; };\n  d3_selectAll = function(s, n) { return Sizzle.uniqueSort(Sizzle(s, n)); };\n  d3_selectMatches = Sizzle.matchesSelector;\n}\n\nvar d3_selectionPrototype = [];\n\nd3.selection = function() {\n  return d3_selectionRoot;\n};\n\nd3.selection.prototype = d3_selectionPrototype;\nd3_selectionPrototype.select = function(selector) {\n  var subgroups = [],\n      subgroup,\n      subnode,\n      group,\n      node;\n\n  if (typeof selector !== \"function\") selector = d3_selection_selector(selector);\n\n  for (var j = -1, m = this.length; ++j < m;) {\n    subgroups.push(subgroup = []);\n    subgroup.parentNode = (group = this[j]).parentNode;\n    for (var i = -1, n = group.length; ++i < n;) {\n      if (node = group[i]) {\n        subgroup.push(subnode = selector.call(node, node.__data__, i));\n        if (subnode && \"__data__\" in node) subnode.__data__ = node.__data__;\n      } else {\n        subgroup.push(null);\n      }\n    }\n  }\n\n  return d3_selection(subgroups);\n};\n\nfunction d3_selection_selector(selector) {\n  return function() {\n    return d3_select(selector, this);\n  };\n}\nd3_selectionPrototype.selectAll = function(selector) {\n  var subgroups = [],\n      subgroup,\n      node;\n\n  if (typeof selector !== \"function\") selector = d3_selection_selectorAll(selector);\n\n  for (var j = -1, m = this.length; ++j < m;) {\n    for (var group = this[j], i = -1, n = group.length; ++i < n;) {\n      if (node = group[i]) {\n        subgroups.push(subgroup = d3_array(selector.call(node, node.__data__, i)));\n        subgroup.parentNode = node;\n      }\n    }\n  }\n\n  return d3_selection(subgroups);\n};\n\nfunction d3_selection_selectorAll(selector) {\n  return function() {\n    return d3_selectAll(selector, this);\n  };\n}\nd3_selectionPrototype.attr = function(name, value) {\n  name = d3.ns.qualify(name);\n\n  // If no value is specified, return the first value.\n  if (arguments.length < 2) {\n    var node = this.node();\n    return name.local\n        ? node.getAttributeNS(name.space, name.local)\n        : node.getAttribute(name);\n  }\n\n  function attrNull() {\n    this.removeAttribute(name);\n  }\n\n  function attrNullNS() {\n    this.removeAttributeNS(name.space, name.local);\n  }\n\n  function attrConstant() {\n    this.setAttribute(name, value);\n  }\n\n  function attrConstantNS() {\n    this.setAttributeNS(name.space, name.local, value);\n  }\n\n  function attrFunction() {\n    var x = value.apply(this, arguments);\n    if (x == null) this.removeAttribute(name);\n    else this.setAttribute(name, x);\n  }\n\n  function attrFunctionNS() {\n    var x = value.apply(this, arguments);\n    if (x == null) this.removeAttributeNS(name.space, name.local);\n    else this.setAttributeNS(name.space, name.local, x);\n  }\n\n  return this.each(value == null\n      ? (name.local ? attrNullNS : attrNull) : (typeof value === \"function\"\n      ? (name.local ? attrFunctionNS : attrFunction)\n      : (name.local ? attrConstantNS : attrConstant)));\n};\nd3_selectionPrototype.classed = function(name, value) {\n  var names = name.split(d3_selection_classedWhitespace),\n      n = names.length,\n      i = -1;\n  if (arguments.length > 1) {\n    while (++i < n) d3_selection_classed.call(this, names[i], value);\n    return this;\n  } else {\n    while (++i < n) if (!d3_selection_classed.call(this, names[i])) return false;\n    return true;\n  }\n};\n\nvar d3_selection_classedWhitespace = /\\s+/g;\n\nfunction d3_selection_classed(name, value) {\n  var re = new RegExp(\"(^|\\\\s+)\" + d3.requote(name) + \"(\\\\s+|$)\", \"g\");\n\n  // If no value is specified, return the first value.\n  if (arguments.length < 2) {\n    var node = this.node();\n    if (c = node.classList) return c.contains(name);\n    var c = node.className;\n    re.lastIndex = 0;\n    return re.test(c.baseVal != null ? c.baseVal : c);\n  }\n\n  function classedAdd() {\n    if (c = this.classList) return c.add(name);\n    var c = this.className,\n        cb = c.baseVal != null,\n        cv = cb ? c.baseVal : c;\n    re.lastIndex = 0;\n    if (!re.test(cv)) {\n      cv = d3_collapse(cv + \" \" + name);\n      if (cb) c.baseVal = cv;\n      else this.className = cv;\n    }\n  }\n\n  function classedRemove() {\n    if (c = this.classList) return c.remove(name);\n    var c = this.className,\n        cb = c.baseVal != null,\n        cv = cb ? c.baseVal : c;\n    cv = d3_collapse(cv.replace(re, \" \"));\n    if (cb) c.baseVal = cv;\n    else this.className = cv;\n  }\n\n  function classedFunction() {\n    (value.apply(this, arguments)\n        ? classedAdd\n        : classedRemove).call(this);\n  }\n\n  return this.each(typeof value === \"function\"\n      ? classedFunction : value\n      ? classedAdd\n      : classedRemove);\n}\nd3_selectionPrototype.style = function(name, value, priority) {\n  if (arguments.length < 3) priority = \"\";\n\n  // If no value is specified, return the first value.\n  if (arguments.length < 2) return window\n      .getComputedStyle(this.node(), null)\n      .getPropertyValue(name);\n\n  function styleNull() {\n    this.style.removeProperty(name);\n  }\n\n  function styleConstant() {\n    this.style.setProperty(name, value, priority);\n  }\n\n  function styleFunction() {\n    var x = value.apply(this, arguments);\n    if (x == null) this.style.removeProperty(name);\n    else this.style.setProperty(name, x, priority);\n  }\n\n  return this.each(value == null\n      ? styleNull : (typeof value === \"function\"\n      ? styleFunction : styleConstant));\n};\nd3_selectionPrototype.property = function(name, value) {\n\n  // If no value is specified, return the first value.\n  if (arguments.length < 2) return this.node()[name];\n\n  function propertyNull() {\n    delete this[name];\n  }\n\n  function propertyConstant() {\n    this[name] = value;\n  }\n\n  function propertyFunction() {\n    var x = value.apply(this, arguments);\n    if (x == null) delete this[name];\n    else this[name] = x;\n  }\n\n  return this.each(value == null\n      ? propertyNull : (typeof value === \"function\"\n      ? propertyFunction : propertyConstant));\n};\nd3_selectionPrototype.text = function(value) {\n  return arguments.length < 1\n      ? this.node().textContent : this.each(typeof value === \"function\"\n      ? function() { var v = value.apply(this, arguments); this.textContent = v == null ? \"\" : v; } : value == null\n      ? function() { this.textContent = \"\"; }\n      : function() { this.textContent = value; });\n};\nd3_selectionPrototype.html = function(value) {\n  return arguments.length < 1\n      ? this.node().innerHTML : this.each(typeof value === \"function\"\n      ? function() { var v = value.apply(this, arguments); this.innerHTML = v == null ? \"\" : v; } : value == null\n      ? function() { this.innerHTML = \"\"; }\n      : function() { this.innerHTML = value; });\n};\n// TODO append(node)?\n// TODO append(function)?\nd3_selectionPrototype.append = function(name) {\n  name = d3.ns.qualify(name);\n\n  function append() {\n    return this.appendChild(document.createElementNS(this.namespaceURI, name));\n  }\n\n  function appendNS() {\n    return this.appendChild(document.createElementNS(name.space, name.local));\n  }\n\n  return this.select(name.local ? appendNS : append);\n};\n// TODO insert(node, function)?\n// TODO insert(function, string)?\n// TODO insert(function, function)?\nd3_selectionPrototype.insert = function(name, before) {\n  name = d3.ns.qualify(name);\n\n  function insert() {\n    return this.insertBefore(\n        document.createElementNS(this.namespaceURI, name),\n        d3_select(before, this));\n  }\n\n  function insertNS() {\n    return this.insertBefore(\n        document.createElementNS(name.space, name.local),\n        d3_select(before, this));\n  }\n\n  return this.select(name.local ? insertNS : insert);\n};\n// TODO remove(selector)?\n// TODO remove(node)?\n// TODO remove(function)?\nd3_selectionPrototype.remove = function() {\n  return this.each(function() {\n    var parent = this.parentNode;\n    if (parent) parent.removeChild(this);\n  });\n};\nd3_selectionPrototype.data = function(value, key) {\n  var i = -1,\n      n = this.length,\n      group,\n      node;\n\n  // If no value is specified, return the first value.\n  if (!arguments.length) {\n    value = new Array(n = (group = this[0]).length);\n    while (++i < n) {\n      if (node = group[i]) {\n        value[i] = node.__data__;\n      }\n    }\n    return value;\n  }\n\n  function bind(group, groupData) {\n    var i,\n        n = group.length,\n        m = groupData.length,\n        n0 = Math.min(n, m),\n        n1 = Math.max(n, m),\n        updateNodes = [],\n        enterNodes = [],\n        exitNodes = [],\n        node,\n        nodeData;\n\n    if (key) {\n      var nodeByKeyValue = new d3_Map,\n          keyValues = [],\n          keyValue,\n          j = groupData.length;\n\n      for (i = -1; ++i < n;) {\n        keyValue = key.call(node = group[i], node.__data__, i);\n        if (nodeByKeyValue.has(keyValue)) {\n          exitNodes[j++] = node; // duplicate key\n        } else {\n          nodeByKeyValue.set(keyValue, node);\n        }\n        keyValues.push(keyValue);\n      }\n\n      for (i = -1; ++i < m;) {\n        keyValue = key.call(groupData, nodeData = groupData[i], i)\n        if (nodeByKeyValue.has(keyValue)) {\n          updateNodes[i] = node = nodeByKeyValue.get(keyValue);\n          node.__data__ = nodeData;\n          enterNodes[i] = exitNodes[i] = null;\n        } else {\n          enterNodes[i] = d3_selection_dataNode(nodeData);\n          updateNodes[i] = exitNodes[i] = null;\n        }\n        nodeByKeyValue.remove(keyValue);\n      }\n\n      for (i = -1; ++i < n;) {\n        if (nodeByKeyValue.has(keyValues[i])) {\n          exitNodes[i] = group[i];\n        }\n      }\n    } else {\n      for (i = -1; ++i < n0;) {\n        node = group[i];\n        nodeData = groupData[i];\n        if (node) {\n          node.__data__ = nodeData;\n          updateNodes[i] = node;\n          enterNodes[i] = exitNodes[i] = null;\n        } else {\n          enterNodes[i] = d3_selection_dataNode(nodeData);\n          updateNodes[i] = exitNodes[i] = null;\n        }\n      }\n      for (; i < m; ++i) {\n        enterNodes[i] = d3_selection_dataNode(groupData[i]);\n        updateNodes[i] = exitNodes[i] = null;\n      }\n      for (; i < n1; ++i) {\n        exitNodes[i] = group[i];\n        enterNodes[i] = updateNodes[i] = null;\n      }\n    }\n\n    enterNodes.update\n        = updateNodes;\n\n    enterNodes.parentNode\n        = updateNodes.parentNode\n        = exitNodes.parentNode\n        = group.parentNode;\n\n    enter.push(enterNodes);\n    update.push(updateNodes);\n    exit.push(exitNodes);\n  }\n\n  var enter = d3_selection_enter([]),\n      update = d3_selection([]),\n      exit = d3_selection([]);\n\n  if (typeof value === \"function\") {\n    while (++i < n) {\n      bind(group = this[i], value.call(group, group.parentNode.__data__, i));\n    }\n  } else {\n    while (++i < n) {\n      bind(group = this[i], value);\n    }\n  }\n\n  update.enter = function() { return enter; };\n  update.exit = function() { return exit; };\n  return update;\n};\n\nfunction d3_selection_dataNode(data) {\n  return {__data__: data};\n}\nd3_selectionPrototype.datum =\nd3_selectionPrototype.map = function(value) {\n  return arguments.length < 1\n      ? this.property(\"__data__\")\n      : this.property(\"__data__\", value);\n};\nd3_selectionPrototype.filter = function(filter) {\n  var subgroups = [],\n      subgroup,\n      group,\n      node;\n\n  if (typeof filter !== \"function\") filter = d3_selection_filter(filter);\n\n  for (var j = 0, m = this.length; j < m; j++) {\n    subgroups.push(subgroup = []);\n    subgroup.parentNode = (group = this[j]).parentNode;\n    for (var i = 0, n = group.length; i < n; i++) {\n      if ((node = group[i]) && filter.call(node, node.__data__, i)) {\n        subgroup.push(node);\n      }\n    }\n  }\n\n  return d3_selection(subgroups);\n};\n\nfunction d3_selection_filter(selector) {\n  return function() {\n    return d3_selectMatches(this, selector);\n  };\n}\nd3_selectionPrototype.order = function() {\n  for (var j = -1, m = this.length; ++j < m;) {\n    for (var group = this[j], i = group.length - 1, next = group[i], node; --i >= 0;) {\n      if (node = group[i]) {\n        if (next && next !== node.nextSibling) next.parentNode.insertBefore(node, next);\n        next = node;\n      }\n    }\n  }\n  return this;\n};\nd3_selectionPrototype.sort = function(comparator) {\n  comparator = d3_selection_sortComparator.apply(this, arguments);\n  for (var j = -1, m = this.length; ++j < m;) this[j].sort(comparator);\n  return this.order();\n};\n\nfunction d3_selection_sortComparator(comparator) {\n  if (!arguments.length) comparator = d3.ascending;\n  return function(a, b) {\n    return comparator(a && a.__data__, b && b.__data__);\n  };\n}\n// type can be namespaced, e.g., \"click.foo\"\n// listener can be null for removal\nd3_selectionPrototype.on = function(type, listener, capture) {\n  if (arguments.length < 3) capture = false;\n\n  // parse the type specifier\n  var name = \"__on\" + type, i = type.indexOf(\".\");\n  if (i > 0) type = type.substring(0, i);\n\n  // if called with only one argument, return the current listener\n  if (arguments.length < 2) return (i = this.node()[name]) && i._;\n\n  // remove the old event listener, and add the new event listener\n  return this.each(function(d, i) {\n    var node = this,\n        o = node[name];\n\n    // remove the old listener, if any (using the previously-set capture)\n    if (o) {\n      node.removeEventListener(type, o, o.$);\n      delete node[name];\n    }\n\n    // add the new listener, if any (remembering the capture flag)\n    if (listener) {\n      node.addEventListener(type, node[name] = l, l.$ = capture);\n      l._ = listener; // stash the unwrapped listener for get\n    }\n\n    // wrapped event listener that preserves i\n    function l(e) {\n      var o = d3.event; // Events can be reentrant (e.g., focus).\n      d3.event = e;\n      try {\n        listener.call(node, node.__data__, i);\n      } finally {\n        d3.event = o;\n      }\n    }\n  });\n};\nd3_selectionPrototype.each = function(callback) {\n  for (var j = -1, m = this.length; ++j < m;) {\n    for (var group = this[j], i = -1, n = group.length; ++i < n;) {\n      var node = group[i];\n      if (node) callback.call(node, node.__data__, i, j);\n    }\n  }\n  return this;\n};\n//\n// Note: assigning to the arguments array simultaneously changes the value of\n// the corresponding argument!\n//\n// TODO The `this` argument probably shouldn't be the first argument to the\n// callback, anyway, since it's redundant. However, that will require a major\n// version bump due to backwards compatibility, so I'm not changing it right\n// away.\n//\nd3_selectionPrototype.call = function(callback) {\n  callback.apply(this, (arguments[0] = this, arguments));\n  return this;\n};\nd3_selectionPrototype.empty = function() {\n  return !this.node();\n};\nd3_selectionPrototype.node = function(callback) {\n  for (var j = 0, m = this.length; j < m; j++) {\n    for (var group = this[j], i = 0, n = group.length; i < n; i++) {\n      var node = group[i];\n      if (node) return node;\n    }\n  }\n  return null;\n};\nd3_selectionPrototype.transition = function() {\n  var subgroups = [],\n      subgroup,\n      node;\n\n  for (var j = -1, m = this.length; ++j < m;) {\n    subgroups.push(subgroup = []);\n    for (var group = this[j], i = -1, n = group.length; ++i < n;) {\n      subgroup.push((node = group[i]) ? {node: node, delay: d3_transitionDelay, duration: d3_transitionDuration} : null);\n    }\n  }\n\n  return d3_transition(subgroups, d3_transitionId || ++d3_transitionNextId, Date.now());\n};\nvar d3_selectionRoot = d3_selection([[document]]);\n\nd3_selectionRoot[0].parentNode = d3_selectRoot;\n\n// TODO fast singleton implementation!\n// TODO select(function)\nd3.select = function(selector) {\n  return typeof selector === \"string\"\n      ? d3_selectionRoot.select(selector)\n      : d3_selection([[selector]]); // assume node\n};\n\n// TODO selectAll(function)\nd3.selectAll = function(selector) {\n  return typeof selector === \"string\"\n      ? d3_selectionRoot.selectAll(selector)\n      : d3_selection([d3_array(selector)]); // assume node[]\n};\nfunction d3_selection_enter(selection) {\n  d3_arraySubclass(selection, d3_selection_enterPrototype);\n  return selection;\n}\n\nvar d3_selection_enterPrototype = [];\n\nd3.selection.enter = d3_selection_enter;\nd3.selection.enter.prototype = d3_selection_enterPrototype;\n\nd3_selection_enterPrototype.append = d3_selectionPrototype.append;\nd3_selection_enterPrototype.insert = d3_selectionPrototype.insert;\nd3_selection_enterPrototype.empty = d3_selectionPrototype.empty;\nd3_selection_enterPrototype.node = d3_selectionPrototype.node;\nd3_selection_enterPrototype.select = function(selector) {\n  var subgroups = [],\n      subgroup,\n      subnode,\n      upgroup,\n      group,\n      node;\n\n  for (var j = -1, m = this.length; ++j < m;) {\n    upgroup = (group = this[j]).update;\n    subgroups.push(subgroup = []);\n    subgroup.parentNode = group.parentNode;\n    for (var i = -1, n = group.length; ++i < n;) {\n      if (node = group[i]) {\n        subgroup.push(upgroup[i] = subnode = selector.call(group.parentNode, node.__data__, i));\n        subnode.__data__ = node.__data__;\n      } else {\n        subgroup.push(null);\n      }\n    }\n  }\n\n  return d3_selection(subgroups);\n};\nfunction d3_transition(groups, id, time) {\n  d3_arraySubclass(groups, d3_transitionPrototype);\n\n  var tweens = new d3_Map,\n      event = d3.dispatch(\"start\", \"end\"),\n      ease = d3_transitionEase;\n\n  groups.id = id;\n\n  groups.time = time;\n\n  groups.tween = function(name, tween) {\n    if (arguments.length < 2) return tweens.get(name);\n    if (tween == null) tweens.remove(name);\n    else tweens.set(name, tween);\n    return groups;\n  };\n\n  groups.ease = function(value) {\n    if (!arguments.length) return ease;\n    ease = typeof value === \"function\" ? value : d3.ease.apply(d3, arguments);\n    return groups;\n  };\n\n  groups.each = function(type, listener) {\n    if (arguments.length < 2) return d3_transition_each.call(groups, type);\n    event.on(type, listener);\n    return groups;\n  };\n\n  d3.timer(function(elapsed) {\n    groups.each(function(d, i, j) {\n      var tweened = [],\n          node = this,\n          delay = groups[j][i].delay,\n          duration = groups[j][i].duration,\n          lock = node.__transition__ || (node.__transition__ = {active: 0, count: 0});\n\n      ++lock.count;\n\n      delay <= elapsed ? start(elapsed) : d3.timer(start, delay, time);\n\n      function start(elapsed) {\n        if (lock.active > id) return stop();\n        lock.active = id;\n\n        tweens.forEach(function(key, value) {\n          if (tween = value.call(node, d, i)) {\n            tweened.push(tween);\n          }\n        });\n\n        event.start.call(node, d, i);\n        if (!tick(elapsed)) d3.timer(tick, 0, time);\n        return 1;\n      }\n\n      function tick(elapsed) {\n        if (lock.active !== id) return stop();\n\n        var t = (elapsed - delay) / duration,\n            e = ease(t),\n            n = tweened.length;\n\n        while (n > 0) {\n          tweened[--n].call(node, e);\n        }\n\n        if (t >= 1) {\n          stop();\n          d3_transitionId = id;\n          event.end.call(node, d, i);\n          d3_transitionId = 0;\n          return 1;\n        }\n      }\n\n      function stop() {\n        if (!--lock.count) delete node.__transition__;\n        return 1;\n      }\n    });\n    return 1;\n  }, 0, time);\n\n  return groups;\n}\n\nvar d3_transitionRemove = {};\n\nfunction d3_transitionNull(d, i, a) {\n  return a != \"\" && d3_transitionRemove;\n}\n\nfunction d3_transitionTween(name, b) {\n  var interpolate = d3_interpolateByName(name);\n\n  function transitionFunction(d, i, a) {\n    var v = b.call(this, d, i);\n    return v == null\n        ? a != \"\" && d3_transitionRemove\n        : a != v && interpolate(a, v);\n  }\n\n  function transitionString(d, i, a) {\n    return a != b && interpolate(a, b);\n  }\n\n  return typeof b === \"function\" ? transitionFunction\n      : b == null ? d3_transitionNull\n      : (b += \"\", transitionString);\n}\n\nvar d3_transitionPrototype = [],\n    d3_transitionNextId = 0,\n    d3_transitionId = 0,\n    d3_transitionDefaultDelay = 0,\n    d3_transitionDefaultDuration = 250,\n    d3_transitionDefaultEase = d3.ease(\"cubic-in-out\"),\n    d3_transitionDelay = d3_transitionDefaultDelay,\n    d3_transitionDuration = d3_transitionDefaultDuration,\n    d3_transitionEase = d3_transitionDefaultEase;\n\nd3_transitionPrototype.call = d3_selectionPrototype.call;\n\nd3.transition = function(selection) {\n  return arguments.length\n      ? (d3_transitionId ? selection.transition() : selection)\n      : d3_selectionRoot.transition();\n};\n\nd3.transition.prototype = d3_transitionPrototype;\nd3_transitionPrototype.select = function(selector) {\n  var subgroups = [],\n      subgroup,\n      subnode,\n      node;\n\n  if (typeof selector !== \"function\") selector = d3_selection_selector(selector);\n\n  for (var j = -1, m = this.length; ++j < m;) {\n    subgroups.push(subgroup = []);\n    for (var group = this[j], i = -1, n = group.length; ++i < n;) {\n      if ((node = group[i]) && (subnode = selector.call(node.node, node.node.__data__, i))) {\n        if (\"__data__\" in node.node) subnode.__data__ = node.node.__data__;\n        subgroup.push({node: subnode, delay: node.delay, duration: node.duration});\n      } else {\n        subgroup.push(null);\n      }\n    }\n  }\n\n  return d3_transition(subgroups, this.id, this.time).ease(this.ease());\n};\nd3_transitionPrototype.selectAll = function(selector) {\n  var subgroups = [],\n      subgroup,\n      subnodes,\n      node;\n\n  if (typeof selector !== \"function\") selector = d3_selection_selectorAll(selector);\n\n  for (var j = -1, m = this.length; ++j < m;) {\n    for (var group = this[j], i = -1, n = group.length; ++i < n;) {\n      if (node = group[i]) {\n        subnodes = selector.call(node.node, node.node.__data__, i);\n        subgroups.push(subgroup = []);\n        for (var k = -1, o = subnodes.length; ++k < o;) {\n          subgroup.push({node: subnodes[k], delay: node.delay, duration: node.duration});\n        }\n      }\n    }\n  }\n\n  return d3_transition(subgroups, this.id, this.time).ease(this.ease());\n};\nd3_transitionPrototype.attr = function(name, value) {\n  return this.attrTween(name, d3_transitionTween(name, value));\n};\n\nd3_transitionPrototype.attrTween = function(nameNS, tween) {\n  var name = d3.ns.qualify(nameNS);\n\n  function attrTween(d, i) {\n    var f = tween.call(this, d, i, this.getAttribute(name));\n    return f === d3_transitionRemove\n        ? (this.removeAttribute(name), null)\n        : f && function(t) { this.setAttribute(name, f(t)); };\n  }\n\n  function attrTweenNS(d, i) {\n    var f = tween.call(this, d, i, this.getAttributeNS(name.space, name.local));\n    return f === d3_transitionRemove\n        ? (this.removeAttributeNS(name.space, name.local), null)\n        : f && function(t) { this.setAttributeNS(name.space, name.local, f(t)); };\n  }\n\n  return this.tween(\"attr.\" + nameNS, name.local ? attrTweenNS : attrTween);\n};\nd3_transitionPrototype.style = function(name, value, priority) {\n  if (arguments.length < 3) priority = \"\";\n  return this.styleTween(name, d3_transitionTween(name, value), priority);\n};\n\nd3_transitionPrototype.styleTween = function(name, tween, priority) {\n  if (arguments.length < 3) priority = \"\";\n  return this.tween(\"style.\" + name, function(d, i) {\n    var f = tween.call(this, d, i, window.getComputedStyle(this, null).getPropertyValue(name));\n    return f === d3_transitionRemove\n        ? (this.style.removeProperty(name), null)\n        : f && function(t) { this.style.setProperty(name, f(t), priority); };\n  });\n};\nd3_transitionPrototype.text = function(value) {\n  return this.tween(\"text\", function(d, i) {\n    this.textContent = typeof value === \"function\"\n        ? value.call(this, d, i)\n        : value;\n  });\n};\nd3_transitionPrototype.remove = function() {\n  return this.each(\"end.transition\", function() {\n    var p;\n    if (!this.__transition__ && (p = this.parentNode)) p.removeChild(this);\n  });\n};\nd3_transitionPrototype.delay = function(value) {\n  var groups = this;\n  return groups.each(typeof value === \"function\"\n      ? function(d, i, j) { groups[j][i].delay = value.apply(this, arguments) | 0; }\n      : (value = value | 0, function(d, i, j) { groups[j][i].delay = value; }));\n};\nd3_transitionPrototype.duration = function(value) {\n  var groups = this;\n  return groups.each(typeof value === \"function\"\n      ? function(d, i, j) { groups[j][i].duration = Math.max(1, value.apply(this, arguments) | 0); }\n      : (value = Math.max(1, value | 0), function(d, i, j) { groups[j][i].duration = value; }));\n};\nfunction d3_transition_each(callback) {\n  var id = d3_transitionId,\n      ease = d3_transitionEase,\n      delay = d3_transitionDelay,\n      duration = d3_transitionDuration;\n\n  d3_transitionId = this.id;\n  d3_transitionEase = this.ease();\n  for (var j = 0, m = this.length; j < m; j++) {\n    for (var group = this[j], i = 0, n = group.length; i < n; i++) {\n      var node = group[i];\n      if (node) {\n        d3_transitionDelay = this[j][i].delay;\n        d3_transitionDuration = this[j][i].duration;\n        callback.call(node = node.node, node.__data__, i, j);\n      }\n    }\n  }\n\n  d3_transitionId = id;\n  d3_transitionEase = ease;\n  d3_transitionDelay = delay;\n  d3_transitionDuration = duration;\n  return this;\n}\nd3_transitionPrototype.transition = function() {\n  return this.select(d3_this);\n};\nvar d3_timer_queue = null,\n    d3_timer_interval, // is an interval (or frame) active?\n    d3_timer_timeout; // is a timeout active?\n\n// The timer will continue to fire until callback returns true.\nd3.timer = function(callback, delay, then) {\n  var found = false,\n      t0,\n      t1 = d3_timer_queue;\n\n  if (arguments.length < 3) {\n    if (arguments.length < 2) delay = 0;\n    else if (!isFinite(delay)) return;\n    then = Date.now();\n  }\n\n  // See if the callback's already in the queue.\n  while (t1) {\n    if (t1.callback === callback) {\n      t1.then = then;\n      t1.delay = delay;\n      found = true;\n      break;\n    }\n    t0 = t1;\n    t1 = t1.next;\n  }\n\n  // Otherwise, add the callback to the queue.\n  if (!found) d3_timer_queue = {\n    callback: callback,\n    then: then,\n    delay: delay,\n    next: d3_timer_queue\n  };\n\n  // Start animatin'!\n  if (!d3_timer_interval) {\n    d3_timer_timeout = clearTimeout(d3_timer_timeout);\n    d3_timer_interval = 1;\n    d3_timer_frame(d3_timer_step);\n  }\n}\n\nfunction d3_timer_step() {\n  var elapsed,\n      now = Date.now(),\n      t1 = d3_timer_queue;\n\n  while (t1) {\n    elapsed = now - t1.then;\n    if (elapsed >= t1.delay) t1.flush = t1.callback(elapsed);\n    t1 = t1.next;\n  }\n\n  var delay = d3_timer_flush() - now;\n  if (delay > 24) {\n    if (isFinite(delay)) {\n      clearTimeout(d3_timer_timeout);\n      d3_timer_timeout = setTimeout(d3_timer_step, delay);\n    }\n    d3_timer_interval = 0;\n  } else {\n    d3_timer_interval = 1;\n    d3_timer_frame(d3_timer_step);\n  }\n}\n\nd3.timer.flush = function() {\n  var elapsed,\n      now = Date.now(),\n      t1 = d3_timer_queue;\n\n  while (t1) {\n    elapsed = now - t1.then;\n    if (!t1.delay) t1.flush = t1.callback(elapsed);\n    t1 = t1.next;\n  }\n\n  d3_timer_flush();\n};\n\n// Flush after callbacks, to avoid concurrent queue modification.\nfunction d3_timer_flush() {\n  var t0 = null,\n      t1 = d3_timer_queue,\n      then = Infinity;\n  while (t1) {\n    if (t1.flush) {\n      t1 = t0 ? t0.next = t1.next : d3_timer_queue = t1.next;\n    } else {\n      then = Math.min(then, t1.then + t1.delay);\n      t1 = (t0 = t1).next;\n    }\n  }\n  return then;\n}\n\nvar d3_timer_frame = window.requestAnimationFrame\n    || window.webkitRequestAnimationFrame\n    || window.mozRequestAnimationFrame\n    || window.oRequestAnimationFrame\n    || window.msRequestAnimationFrame\n    || function(callback) { setTimeout(callback, 17); };\nd3.transform = function(string) {\n  var g = document.createElementNS(d3.ns.prefix.svg, \"g\"),\n      identity = {a: 1, b: 0, c: 0, d: 1, e: 0, f: 0};\n  return (d3.transform = function(string) {\n    g.setAttribute(\"transform\", string);\n    var t = g.transform.baseVal.consolidate();\n    return new d3_transform(t ? t.matrix : identity);\n  })(string);\n};\n\n// Compute x-scale and normalize the first row.\n// Compute shear and make second row orthogonal to first.\n// Compute y-scale and normalize the second row.\n// Finally, compute the rotation.\nfunction d3_transform(m) {\n  var r0 = [m.a, m.b],\n      r1 = [m.c, m.d],\n      kx = d3_transformNormalize(r0),\n      kz = d3_transformDot(r0, r1),\n      ky = d3_transformNormalize(d3_transformCombine(r1, r0, -kz)) || 0;\n  if (r0[0] * r1[1] < r1[0] * r0[1]) {\n    r0[0] *= -1;\n    r0[1] *= -1;\n    kx *= -1;\n    kz *= -1;\n  }\n  this.rotate = (kx ? Math.atan2(r0[1], r0[0]) : Math.atan2(-r1[0], r1[1])) * d3_transformDegrees;\n  this.translate = [m.e, m.f];\n  this.scale = [kx, ky];\n  this.skew = ky ? Math.atan2(kz, ky) * d3_transformDegrees : 0;\n};\n\nd3_transform.prototype.toString = function() {\n  return \"translate(\" + this.translate\n      + \")rotate(\" + this.rotate\n      + \")skewX(\" + this.skew\n      + \")scale(\" + this.scale\n      + \")\";\n};\n\nfunction d3_transformDot(a, b) {\n  return a[0] * b[0] + a[1] * b[1];\n}\n\nfunction d3_transformNormalize(a) {\n  var k = Math.sqrt(d3_transformDot(a, a));\n  if (k) {\n    a[0] /= k;\n    a[1] /= k;\n  }\n  return k;\n}\n\nfunction d3_transformCombine(a, b, k) {\n  a[0] += k * b[0];\n  a[1] += k * b[1];\n  return a;\n}\n\nvar d3_transformDegrees = 180 / Math.PI;\nd3.mouse = function(container) {\n  return d3_mousePoint(container, d3_eventSource());\n};\n\n// https://bugs.webkit.org/show_bug.cgi?id=44083\nvar d3_mouse_bug44083 = /WebKit/.test(navigator.userAgent) ? -1 : 0;\n\nfunction d3_mousePoint(container, e) {\n  var svg = container.ownerSVGElement || container;\n  if (svg.createSVGPoint) {\n    var point = svg.createSVGPoint();\n    if ((d3_mouse_bug44083 < 0) && (window.scrollX || window.scrollY)) {\n      svg = d3.select(document.body)\n        .append(\"svg\")\n          .style(\"position\", \"absolute\")\n          .style(\"top\", 0)\n          .style(\"left\", 0);\n      var ctm = svg[0][0].getScreenCTM();\n      d3_mouse_bug44083 = !(ctm.f || ctm.e);\n      svg.remove();\n    }\n    if (d3_mouse_bug44083) {\n      point.x = e.pageX;\n      point.y = e.pageY;\n    } else {\n      point.x = e.clientX;\n      point.y = e.clientY;\n    }\n    point = point.matrixTransform(container.getScreenCTM().inverse());\n    return [point.x, point.y];\n  }\n  var rect = container.getBoundingClientRect();\n  return [e.clientX - rect.left - container.clientLeft, e.clientY - rect.top - container.clientTop];\n};\nd3.touches = function(container, touches) {\n  if (arguments.length < 2) touches = d3_eventSource().touches;\n  return touches ? d3_array(touches).map(function(touch) {\n    var point = d3_mousePoint(container, touch);\n    point.identifier = touch.identifier;\n    return point;\n  }) : [];\n};\nfunction d3_noop() {}\nd3.scale = {};\n\nfunction d3_scaleExtent(domain) {\n  var start = domain[0], stop = domain[domain.length - 1];\n  return start < stop ? [start, stop] : [stop, start];\n}\n\nfunction d3_scaleRange(scale) {\n  return scale.rangeExtent ? scale.rangeExtent() : d3_scaleExtent(scale.range());\n}\nfunction d3_scale_nice(domain, nice) {\n  var i0 = 0,\n      i1 = domain.length - 1,\n      x0 = domain[i0],\n      x1 = domain[i1],\n      dx;\n\n  if (x1 < x0) {\n    dx = i0; i0 = i1; i1 = dx;\n    dx = x0; x0 = x1; x1 = dx;\n  }\n\n  if (dx = x1 - x0) {\n    nice = nice(dx);\n    domain[i0] = nice.floor(x0);\n    domain[i1] = nice.ceil(x1);\n  }\n\n  return domain;\n}\n\nfunction d3_scale_niceDefault() {\n  return Math;\n}\nd3.scale.linear = function() {\n  return d3_scale_linear([0, 1], [0, 1], d3.interpolate, false);\n};\n\nfunction d3_scale_linear(domain, range, interpolate, clamp) {\n  var output,\n      input;\n\n  function rescale() {\n    var linear = Math.min(domain.length, range.length) > 2 ? d3_scale_polylinear : d3_scale_bilinear,\n        uninterpolate = clamp ? d3_uninterpolateClamp : d3_uninterpolateNumber;\n    output = linear(domain, range, uninterpolate, interpolate);\n    input = linear(range, domain, uninterpolate, d3.interpolate);\n    return scale;\n  }\n\n  function scale(x) {\n    return output(x);\n  }\n\n  // Note: requires range is coercible to number!\n  scale.invert = function(y) {\n    return input(y);\n  };\n\n  scale.domain = function(x) {\n    if (!arguments.length) return domain;\n    domain = x.map(Number);\n    return rescale();\n  };\n\n  scale.range = function(x) {\n    if (!arguments.length) return range;\n    range = x;\n    return rescale();\n  };\n\n  scale.rangeRound = function(x) {\n    return scale.range(x).interpolate(d3.interpolateRound);\n  };\n\n  scale.clamp = function(x) {\n    if (!arguments.length) return clamp;\n    clamp = x;\n    return rescale();\n  };\n\n  scale.interpolate = function(x) {\n    if (!arguments.length) return interpolate;\n    interpolate = x;\n    return rescale();\n  };\n\n  scale.ticks = function(m) {\n    return d3_scale_linearTicks(domain, m);\n  };\n\n  scale.tickFormat = function(m) {\n    return d3_scale_linearTickFormat(domain, m);\n  };\n\n  scale.nice = function() {\n    d3_scale_nice(domain, d3_scale_linearNice);\n    return rescale();\n  };\n\n  scale.copy = function() {\n    return d3_scale_linear(domain, range, interpolate, clamp);\n  };\n\n  return rescale();\n}\n\nfunction d3_scale_linearRebind(scale, linear) {\n  return d3.rebind(scale, linear, \"range\", \"rangeRound\", \"interpolate\", \"clamp\");\n}\n\nfunction d3_scale_linearNice(dx) {\n  dx = Math.pow(10, Math.round(Math.log(dx) / Math.LN10) - 1);\n  return {\n    floor: function(x) { return Math.floor(x / dx) * dx; },\n    ceil: function(x) { return Math.ceil(x / dx) * dx; }\n  };\n}\n\nfunction d3_scale_linearTickRange(domain, m) {\n  var extent = d3_scaleExtent(domain),\n      span = extent[1] - extent[0],\n      step = Math.pow(10, Math.floor(Math.log(span / m) / Math.LN10)),\n      err = m / span * step;\n\n  // Filter ticks to get closer to the desired count.\n  if (err <= .15) step *= 10;\n  else if (err <= .35) step *= 5;\n  else if (err <= .75) step *= 2;\n\n  // Round start and stop values to step interval.\n  extent[0] = Math.ceil(extent[0] / step) * step;\n  extent[1] = Math.floor(extent[1] / step) * step + step * .5; // inclusive\n  extent[2] = step;\n  return extent;\n}\n\nfunction d3_scale_linearTicks(domain, m) {\n  return d3.range.apply(d3, d3_scale_linearTickRange(domain, m));\n}\n\nfunction d3_scale_linearTickFormat(domain, m) {\n  return d3.format(\",.\" + Math.max(0, -Math.floor(Math.log(d3_scale_linearTickRange(domain, m)[2]) / Math.LN10 + .01)) + \"f\");\n}\nfunction d3_scale_bilinear(domain, range, uninterpolate, interpolate) {\n  var u = uninterpolate(domain[0], domain[1]),\n      i = interpolate(range[0], range[1]);\n  return function(x) {\n    return i(u(x));\n  };\n}\nfunction d3_scale_polylinear(domain, range, uninterpolate, interpolate) {\n  var u = [],\n      i = [],\n      j = 0,\n      k = Math.min(domain.length, range.length) - 1;\n\n  // Handle descending domains.\n  if (domain[k] < domain[0]) {\n    domain = domain.slice().reverse();\n    range = range.slice().reverse();\n  }\n\n  while (++j <= k) {\n    u.push(uninterpolate(domain[j - 1], domain[j]));\n    i.push(interpolate(range[j - 1], range[j]));\n  }\n\n  return function(x) {\n    var j = d3.bisect(domain, x, 1, k) - 1;\n    return i[j](u[j](x));\n  };\n}\nd3.scale.log = function() {\n  return d3_scale_log(d3.scale.linear(), d3_scale_logp);\n};\n\nfunction d3_scale_log(linear, log) {\n  var pow = log.pow;\n\n  function scale(x) {\n    return linear(log(x));\n  }\n\n  scale.invert = function(x) {\n    return pow(linear.invert(x));\n  };\n\n  scale.domain = function(x) {\n    if (!arguments.length) return linear.domain().map(pow);\n    log = x[0] < 0 ? d3_scale_logn : d3_scale_logp;\n    pow = log.pow;\n    linear.domain(x.map(log));\n    return scale;\n  };\n\n  scale.nice = function() {\n    linear.domain(d3_scale_nice(linear.domain(), d3_scale_niceDefault));\n    return scale;\n  };\n\n  scale.ticks = function() {\n    var extent = d3_scaleExtent(linear.domain()),\n        ticks = [];\n    if (extent.every(isFinite)) {\n      var i = Math.floor(extent[0]),\n          j = Math.ceil(extent[1]),\n          u = pow(extent[0]),\n          v = pow(extent[1]);\n      if (log === d3_scale_logn) {\n        ticks.push(pow(i));\n        for (; i++ < j;) for (var k = 9; k > 0; k--) ticks.push(pow(i) * k);\n      } else {\n        for (; i < j; i++) for (var k = 1; k < 10; k++) ticks.push(pow(i) * k);\n        ticks.push(pow(i));\n      }\n      for (i = 0; ticks[i] < u; i++) {} // strip small values\n      for (j = ticks.length; ticks[j - 1] > v; j--) {} // strip big values\n      ticks = ticks.slice(i, j);\n    }\n    return ticks;\n  };\n\n  scale.tickFormat = function(n, format) {\n    if (arguments.length < 2) format = d3_scale_logFormat;\n    if (arguments.length < 1) return format;\n    var k = n / scale.ticks().length,\n        f = log === d3_scale_logn ? (e = -1e-12, Math.floor) : (e = 1e-12, Math.ceil),\n        e;\n    return function(d) {\n      return d / pow(f(log(d) + e)) < k ? format(d) : \"\";\n    };\n  };\n\n  scale.copy = function() {\n    return d3_scale_log(linear.copy(), log);\n  };\n\n  return d3_scale_linearRebind(scale, linear);\n}\n\nvar d3_scale_logFormat = d3.format(\".0e\");\n\nfunction d3_scale_logp(x) {\n  return Math.log(x < 0 ? 0 : x) / Math.LN10;\n}\n\nfunction d3_scale_logn(x) {\n  return -Math.log(x > 0 ? 0 : -x) / Math.LN10;\n}\n\nd3_scale_logp.pow = function(x) {\n  return Math.pow(10, x);\n};\n\nd3_scale_logn.pow = function(x) {\n  return -Math.pow(10, -x);\n};\nd3.scale.pow = function() {\n  return d3_scale_pow(d3.scale.linear(), 1);\n};\n\nfunction d3_scale_pow(linear, exponent) {\n  var powp = d3_scale_powPow(exponent),\n      powb = d3_scale_powPow(1 / exponent);\n\n  function scale(x) {\n    return linear(powp(x));\n  }\n\n  scale.invert = function(x) {\n    return powb(linear.invert(x));\n  };\n\n  scale.domain = function(x) {\n    if (!arguments.length) return linear.domain().map(powb);\n    linear.domain(x.map(powp));\n    return scale;\n  };\n\n  scale.ticks = function(m) {\n    return d3_scale_linearTicks(scale.domain(), m);\n  };\n\n  scale.tickFormat = function(m) {\n    return d3_scale_linearTickFormat(scale.domain(), m);\n  };\n\n  scale.nice = function() {\n    return scale.domain(d3_scale_nice(scale.domain(), d3_scale_linearNice));\n  };\n\n  scale.exponent = function(x) {\n    if (!arguments.length) return exponent;\n    var domain = scale.domain();\n    powp = d3_scale_powPow(exponent = x);\n    powb = d3_scale_powPow(1 / exponent);\n    return scale.domain(domain);\n  };\n\n  scale.copy = function() {\n    return d3_scale_pow(linear.copy(), exponent);\n  };\n\n  return d3_scale_linearRebind(scale, linear);\n}\n\nfunction d3_scale_powPow(e) {\n  return function(x) {\n    return x < 0 ? -Math.pow(-x, e) : Math.pow(x, e);\n  };\n}\nd3.scale.sqrt = function() {\n  return d3.scale.pow().exponent(.5);\n};\nd3.scale.ordinal = function() {\n  return d3_scale_ordinal([], {t: \"range\", x: []});\n};\n\nfunction d3_scale_ordinal(domain, ranger) {\n  var index,\n      range,\n      rangeBand;\n\n  function scale(x) {\n    return range[((index.get(x) || index.set(x, domain.push(x))) - 1) % range.length];\n  }\n\n  function steps(start, step) {\n    return d3.range(domain.length).map(function(i) { return start + step * i; });\n  }\n\n  scale.domain = function(x) {\n    if (!arguments.length) return domain;\n    domain = [];\n    index = new d3_Map;\n    var i = -1, n = x.length, xi;\n    while (++i < n) if (!index.has(xi = x[i])) index.set(xi, domain.push(xi));\n    return scale[ranger.t](ranger.x, ranger.p);\n  };\n\n  scale.range = function(x) {\n    if (!arguments.length) return range;\n    range = x;\n    rangeBand = 0;\n    ranger = {t: \"range\", x: x};\n    return scale;\n  };\n\n  scale.rangePoints = function(x, padding) {\n    if (arguments.length < 2) padding = 0;\n    var start = x[0],\n        stop = x[1],\n        step = (stop - start) / (domain.length - 1 + padding);\n    range = steps(domain.length < 2 ? (start + stop) / 2 : start + step * padding / 2, step);\n    rangeBand = 0;\n    ranger = {t: \"rangePoints\", x: x, p: padding};\n    return scale;\n  };\n\n  scale.rangeBands = function(x, padding) {\n    if (arguments.length < 2) padding = 0;\n    var reverse = x[1] < x[0],\n        start = x[reverse - 0],\n        stop = x[1 - reverse],\n        step = (stop - start) / (domain.length + padding);\n    range = steps(start + step * padding, step);\n    if (reverse) range.reverse();\n    rangeBand = step * (1 - padding);\n    ranger = {t: \"rangeBands\", x: x, p: padding};\n    return scale;\n  };\n\n  scale.rangeRoundBands = function(x, padding) {\n    if (arguments.length < 2) padding = 0;\n    var reverse = x[1] < x[0],\n        start = x[reverse - 0],\n        stop = x[1 - reverse],\n        step = Math.floor((stop - start) / (domain.length + padding)),\n        error = stop - start - (domain.length - padding) * step;\n    range = steps(start + Math.round(error / 2), step);\n    if (reverse) range.reverse();\n    rangeBand = Math.round(step * (1 - padding));\n    ranger = {t: \"rangeRoundBands\", x: x, p: padding};\n    return scale;\n  };\n\n  scale.rangeBand = function() {\n    return rangeBand;\n  };\n\n  scale.rangeExtent = function() {\n    return d3_scaleExtent(ranger.x);\n  };\n\n  scale.copy = function() {\n    return d3_scale_ordinal(domain, ranger);\n  };\n\n  return scale.domain(domain);\n}\n/*\n * This product includes color specifications and designs developed by Cynthia\n * Brewer (http://colorbrewer.org/). See lib/colorbrewer for more information.\n */\n\nd3.scale.category10 = function() {\n  return d3.scale.ordinal().range(d3_category10);\n};\n\nd3.scale.category20 = function() {\n  return d3.scale.ordinal().range(d3_category20);\n};\n\nd3.scale.category20b = function() {\n  return d3.scale.ordinal().range(d3_category20b);\n};\n\nd3.scale.category20c = function() {\n  return d3.scale.ordinal().range(d3_category20c);\n};\n\nvar d3_category10 = [\n  \"#1f77b4\", \"#ff7f0e\", \"#2ca02c\", \"#d62728\", \"#9467bd\",\n  \"#8c564b\", \"#e377c2\", \"#7f7f7f\", \"#bcbd22\", \"#17becf\"\n];\n\nvar d3_category20 = [\n  \"#1f77b4\", \"#aec7e8\",\n  \"#ff7f0e\", \"#ffbb78\",\n  \"#2ca02c\", \"#98df8a\",\n  \"#d62728\", \"#ff9896\",\n  \"#9467bd\", \"#c5b0d5\",\n  \"#8c564b\", \"#c49c94\",\n  \"#e377c2\", \"#f7b6d2\",\n  \"#7f7f7f\", \"#c7c7c7\",\n  \"#bcbd22\", \"#dbdb8d\",\n  \"#17becf\", \"#9edae5\"\n];\n\nvar d3_category20b = [\n  \"#393b79\", \"#5254a3\", \"#6b6ecf\", \"#9c9ede\",\n  \"#637939\", \"#8ca252\", \"#b5cf6b\", \"#cedb9c\",\n  \"#8c6d31\", \"#bd9e39\", \"#e7ba52\", \"#e7cb94\",\n  \"#843c39\", \"#ad494a\", \"#d6616b\", \"#e7969c\",\n  \"#7b4173\", \"#a55194\", \"#ce6dbd\", \"#de9ed6\"\n];\n\nvar d3_category20c = [\n  \"#3182bd\", \"#6baed6\", \"#9ecae1\", \"#c6dbef\",\n  \"#e6550d\", \"#fd8d3c\", \"#fdae6b\", \"#fdd0a2\",\n  \"#31a354\", \"#74c476\", \"#a1d99b\", \"#c7e9c0\",\n  \"#756bb1\", \"#9e9ac8\", \"#bcbddc\", \"#dadaeb\",\n  \"#636363\", \"#969696\", \"#bdbdbd\", \"#d9d9d9\"\n];\nd3.scale.quantile = function() {\n  return d3_scale_quantile([], []);\n};\n\nfunction d3_scale_quantile(domain, range) {\n  var thresholds;\n\n  function rescale() {\n    var k = 0,\n        n = domain.length,\n        q = range.length;\n    thresholds = [];\n    while (++k < q) thresholds[k - 1] = d3.quantile(domain, k / q);\n    return scale;\n  }\n\n  function scale(x) {\n    if (isNaN(x = +x)) return NaN;\n    return range[d3.bisect(thresholds, x)];\n  }\n\n  scale.domain = function(x) {\n    if (!arguments.length) return domain;\n    domain = x.filter(function(d) { return !isNaN(d); }).sort(d3.ascending);\n    return rescale();\n  };\n\n  scale.range = function(x) {\n    if (!arguments.length) return range;\n    range = x;\n    return rescale();\n  };\n\n  scale.quantiles = function() {\n    return thresholds;\n  };\n\n  scale.copy = function() {\n    return d3_scale_quantile(domain, range); // copy on write!\n  };\n\n  return rescale();\n}\nd3.scale.quantize = function() {\n  return d3_scale_quantize(0, 1, [0, 1]);\n};\n\nfunction d3_scale_quantize(x0, x1, range) {\n  var kx, i;\n\n  function scale(x) {\n    return range[Math.max(0, Math.min(i, Math.floor(kx * (x - x0))))];\n  }\n\n  function rescale() {\n    kx = range.length / (x1 - x0);\n    i = range.length - 1;\n    return scale;\n  }\n\n  scale.domain = function(x) {\n    if (!arguments.length) return [x0, x1];\n    x0 = +x[0];\n    x1 = +x[x.length - 1];\n    return rescale();\n  };\n\n  scale.range = function(x) {\n    if (!arguments.length) return range;\n    range = x;\n    return rescale();\n  };\n\n  scale.copy = function() {\n    return d3_scale_quantize(x0, x1, range); // copy on write\n  };\n\n  return rescale();\n}\nd3.scale.identity = function() {\n  return d3_scale_identity([0, 1]);\n};\n\nfunction d3_scale_identity(domain) {\n\n  function identity(x) { return +x; }\n\n  identity.invert = identity;\n\n  identity.domain = identity.range = function(x) {\n    if (!arguments.length) return domain;\n    domain = x.map(identity);\n    return identity;\n  };\n\n  identity.ticks = function(m) {\n    return d3_scale_linearTicks(domain, m);\n  };\n\n  identity.tickFormat = function(m) {\n    return d3_scale_linearTickFormat(domain, m);\n  };\n\n  identity.copy = function() {\n    return d3_scale_identity(domain);\n  };\n\n  return identity;\n}\nd3.svg = {};\nd3.svg.arc = function() {\n  var innerRadius = d3_svg_arcInnerRadius,\n      outerRadius = d3_svg_arcOuterRadius,\n      startAngle = d3_svg_arcStartAngle,\n      endAngle = d3_svg_arcEndAngle;\n\n  function arc() {\n    var r0 = innerRadius.apply(this, arguments),\n        r1 = outerRadius.apply(this, arguments),\n        a0 = startAngle.apply(this, arguments) + d3_svg_arcOffset,\n        a1 = endAngle.apply(this, arguments) + d3_svg_arcOffset,\n        da = (a1 < a0 && (da = a0, a0 = a1, a1 = da), a1 - a0),\n        df = da < Math.PI ? \"0\" : \"1\",\n        c0 = Math.cos(a0),\n        s0 = Math.sin(a0),\n        c1 = Math.cos(a1),\n        s1 = Math.sin(a1);\n    return da >= d3_svg_arcMax\n      ? (r0\n      ? \"M0,\" + r1\n      + \"A\" + r1 + \",\" + r1 + \" 0 1,1 0,\" + (-r1)\n      + \"A\" + r1 + \",\" + r1 + \" 0 1,1 0,\" + r1\n      + \"M0,\" + r0\n      + \"A\" + r0 + \",\" + r0 + \" 0 1,0 0,\" + (-r0)\n      + \"A\" + r0 + \",\" + r0 + \" 0 1,0 0,\" + r0\n      + \"Z\"\n      : \"M0,\" + r1\n      + \"A\" + r1 + \",\" + r1 + \" 0 1,1 0,\" + (-r1)\n      + \"A\" + r1 + \",\" + r1 + \" 0 1,1 0,\" + r1\n      + \"Z\")\n      : (r0\n      ? \"M\" + r1 * c0 + \",\" + r1 * s0\n      + \"A\" + r1 + \",\" + r1 + \" 0 \" + df + \",1 \" + r1 * c1 + \",\" + r1 * s1\n      + \"L\" + r0 * c1 + \",\" + r0 * s1\n      + \"A\" + r0 + \",\" + r0 + \" 0 \" + df + \",0 \" + r0 * c0 + \",\" + r0 * s0\n      + \"Z\"\n      : \"M\" + r1 * c0 + \",\" + r1 * s0\n      + \"A\" + r1 + \",\" + r1 + \" 0 \" + df + \",1 \" + r1 * c1 + \",\" + r1 * s1\n      + \"L0,0\"\n      + \"Z\");\n  }\n\n  arc.innerRadius = function(v) {\n    if (!arguments.length) return innerRadius;\n    innerRadius = d3.functor(v);\n    return arc;\n  };\n\n  arc.outerRadius = function(v) {\n    if (!arguments.length) return outerRadius;\n    outerRadius = d3.functor(v);\n    return arc;\n  };\n\n  arc.startAngle = function(v) {\n    if (!arguments.length) return startAngle;\n    startAngle = d3.functor(v);\n    return arc;\n  };\n\n  arc.endAngle = function(v) {\n    if (!arguments.length) return endAngle;\n    endAngle = d3.functor(v);\n    return arc;\n  };\n\n  arc.centroid = function() {\n    var r = (innerRadius.apply(this, arguments)\n        + outerRadius.apply(this, arguments)) / 2,\n        a = (startAngle.apply(this, arguments)\n        + endAngle.apply(this, arguments)) / 2 + d3_svg_arcOffset;\n    return [Math.cos(a) * r, Math.sin(a) * r];\n  };\n\n  return arc;\n};\n\nvar d3_svg_arcOffset = -Math.PI / 2,\n    d3_svg_arcMax = 2 * Math.PI - 1e-6;\n\nfunction d3_svg_arcInnerRadius(d) {\n  return d.innerRadius;\n}\n\nfunction d3_svg_arcOuterRadius(d) {\n  return d.outerRadius;\n}\n\nfunction d3_svg_arcStartAngle(d) {\n  return d.startAngle;\n}\n\nfunction d3_svg_arcEndAngle(d) {\n  return d.endAngle;\n}\nfunction d3_svg_line(projection) {\n  var x = d3_svg_lineX,\n      y = d3_svg_lineY,\n      interpolate = d3_svg_lineInterpolatorDefault,\n      interpolator = d3_svg_lineInterpolators.get(interpolate),\n      tension = .7;\n\n  function line(d) {\n    return d.length < 1 ? null : \"M\" + interpolator(projection(d3_svg_linePoints(this, d, x, y)), tension);\n  }\n\n  line.x = function(v) {\n    if (!arguments.length) return x;\n    x = v;\n    return line;\n  };\n\n  line.y = function(v) {\n    if (!arguments.length) return y;\n    y = v;\n    return line;\n  };\n\n  line.interpolate = function(v) {\n    if (!arguments.length) return interpolate;\n    if (!d3_svg_lineInterpolators.has(v += \"\")) v = d3_svg_lineInterpolatorDefault;\n    interpolator = d3_svg_lineInterpolators.get(interpolate = v);\n    return line;\n  };\n\n  line.tension = function(v) {\n    if (!arguments.length) return tension;\n    tension = v;\n    return line;\n  };\n\n  return line;\n}\n\nd3.svg.line = function() {\n  return d3_svg_line(Object);\n};\n\n// Converts the specified array of data into an array of points\n// (x-y tuples), by evaluating the specified `x` and `y` functions on each\n// data point. The `this` context of the evaluated functions is the specified\n// \"self\" object; each function is passed the current datum and index.\nfunction d3_svg_linePoints(self, d, x, y) {\n  var points = [],\n      i = -1,\n      n = d.length,\n      fx = typeof x === \"function\",\n      fy = typeof y === \"function\",\n      value;\n  if (fx && fy) {\n    while (++i < n) points.push([\n      x.call(self, value = d[i], i),\n      y.call(self, value, i)\n    ]);\n  } else if (fx) {\n    while (++i < n) points.push([x.call(self, d[i], i), y]);\n  } else if (fy) {\n    while (++i < n) points.push([x, y.call(self, d[i], i)]);\n  } else {\n    while (++i < n) points.push([x, y]);\n  }\n  return points;\n}\n\n// The default `x` property, which references d[0].\nfunction d3_svg_lineX(d) {\n  return d[0];\n}\n\n// The default `y` property, which references d[1].\nfunction d3_svg_lineY(d) {\n  return d[1];\n}\n\nvar d3_svg_lineInterpolatorDefault = \"linear\";\n\n// The various interpolators supported by the `line` class.\nvar d3_svg_lineInterpolators = d3.map({\n  \"linear\": d3_svg_lineLinear,\n  \"step-before\": d3_svg_lineStepBefore,\n  \"step-after\": d3_svg_lineStepAfter,\n  \"basis\": d3_svg_lineBasis,\n  \"basis-open\": d3_svg_lineBasisOpen,\n  \"basis-closed\": d3_svg_lineBasisClosed,\n  \"bundle\": d3_svg_lineBundle,\n  \"cardinal\": d3_svg_lineCardinal,\n  \"cardinal-open\": d3_svg_lineCardinalOpen,\n  \"cardinal-closed\": d3_svg_lineCardinalClosed,\n  \"monotone\": d3_svg_lineMonotone\n});\n\n// Linear interpolation; generates \"L\" commands.\nfunction d3_svg_lineLinear(points) {\n  var i = 0,\n      n = points.length,\n      p = points[0],\n      path = [p[0], \",\", p[1]];\n  while (++i < n) path.push(\"L\", (p = points[i])[0], \",\", p[1]);\n  return path.join(\"\");\n}\n\n// Step interpolation; generates \"H\" and \"V\" commands.\nfunction d3_svg_lineStepBefore(points) {\n  var i = 0,\n      n = points.length,\n      p = points[0],\n      path = [p[0], \",\", p[1]];\n  while (++i < n) path.push(\"V\", (p = points[i])[1], \"H\", p[0]);\n  return path.join(\"\");\n}\n\n// Step interpolation; generates \"H\" and \"V\" commands.\nfunction d3_svg_lineStepAfter(points) {\n  var i = 0,\n      n = points.length,\n      p = points[0],\n      path = [p[0], \",\", p[1]];\n  while (++i < n) path.push(\"H\", (p = points[i])[0], \"V\", p[1]);\n  return path.join(\"\");\n}\n\n// Open cardinal spline interpolation; generates \"C\" commands.\nfunction d3_svg_lineCardinalOpen(points, tension) {\n  return points.length < 4\n      ? d3_svg_lineLinear(points)\n      : points[1] + d3_svg_lineHermite(points.slice(1, points.length - 1),\n        d3_svg_lineCardinalTangents(points, tension));\n}\n\n// Closed cardinal spline interpolation; generates \"C\" commands.\nfunction d3_svg_lineCardinalClosed(points, tension) {\n  return points.length < 3\n      ? d3_svg_lineLinear(points)\n      : points[0] + d3_svg_lineHermite((points.push(points[0]), points),\n        d3_svg_lineCardinalTangents([points[points.length - 2]]\n        .concat(points, [points[1]]), tension));\n}\n\n// Cardinal spline interpolation; generates \"C\" commands.\nfunction d3_svg_lineCardinal(points, tension, closed) {\n  return points.length < 3\n      ? d3_svg_lineLinear(points)\n      : points[0] + d3_svg_lineHermite(points,\n        d3_svg_lineCardinalTangents(points, tension));\n}\n\n// Hermite spline construction; generates \"C\" commands.\nfunction d3_svg_lineHermite(points, tangents) {\n  if (tangents.length < 1\n      || (points.length != tangents.length\n      && points.length != tangents.length + 2)) {\n    return d3_svg_lineLinear(points);\n  }\n\n  var quad = points.length != tangents.length,\n      path = \"\",\n      p0 = points[0],\n      p = points[1],\n      t0 = tangents[0],\n      t = t0,\n      pi = 1;\n\n  if (quad) {\n    path += \"Q\" + (p[0] - t0[0] * 2 / 3) + \",\" + (p[1] - t0[1] * 2 / 3)\n        + \",\" + p[0] + \",\" + p[1];\n    p0 = points[1];\n    pi = 2;\n  }\n\n  if (tangents.length > 1) {\n    t = tangents[1];\n    p = points[pi];\n    pi++;\n    path += \"C\" + (p0[0] + t0[0]) + \",\" + (p0[1] + t0[1])\n        + \",\" + (p[0] - t[0]) + \",\" + (p[1] - t[1])\n        + \",\" + p[0] + \",\" + p[1];\n    for (var i = 2; i < tangents.length; i++, pi++) {\n      p = points[pi];\n      t = tangents[i];\n      path += \"S\" + (p[0] - t[0]) + \",\" + (p[1] - t[1])\n          + \",\" + p[0] + \",\" + p[1];\n    }\n  }\n\n  if (quad) {\n    var lp = points[pi];\n    path += \"Q\" + (p[0] + t[0] * 2 / 3) + \",\" + (p[1] + t[1] * 2 / 3)\n        + \",\" + lp[0] + \",\" + lp[1];\n  }\n\n  return path;\n}\n\n// Generates tangents for a cardinal spline.\nfunction d3_svg_lineCardinalTangents(points, tension) {\n  var tangents = [],\n      a = (1 - tension) / 2,\n      p0,\n      p1 = points[0],\n      p2 = points[1],\n      i = 1,\n      n = points.length;\n  while (++i < n) {\n    p0 = p1;\n    p1 = p2;\n    p2 = points[i];\n    tangents.push([a * (p2[0] - p0[0]), a * (p2[1] - p0[1])]);\n  }\n  return tangents;\n}\n\n// B-spline interpolation; generates \"C\" commands.\nfunction d3_svg_lineBasis(points) {\n  if (points.length < 3) return d3_svg_lineLinear(points);\n  var i = 1,\n      n = points.length,\n      pi = points[0],\n      x0 = pi[0],\n      y0 = pi[1],\n      px = [x0, x0, x0, (pi = points[1])[0]],\n      py = [y0, y0, y0, pi[1]],\n      path = [x0, \",\", y0];\n  d3_svg_lineBasisBezier(path, px, py);\n  while (++i < n) {\n    pi = points[i];\n    px.shift(); px.push(pi[0]);\n    py.shift(); py.push(pi[1]);\n    d3_svg_lineBasisBezier(path, px, py);\n  }\n  i = -1;\n  while (++i < 2) {\n    px.shift(); px.push(pi[0]);\n    py.shift(); py.push(pi[1]);\n    d3_svg_lineBasisBezier(path, px, py);\n  }\n  return path.join(\"\");\n}\n\n// Open B-spline interpolation; generates \"C\" commands.\nfunction d3_svg_lineBasisOpen(points) {\n  if (points.length < 4) return d3_svg_lineLinear(points);\n  var path = [],\n      i = -1,\n      n = points.length,\n      pi,\n      px = [0],\n      py = [0];\n  while (++i < 3) {\n    pi = points[i];\n    px.push(pi[0]);\n    py.push(pi[1]);\n  }\n  path.push(d3_svg_lineDot4(d3_svg_lineBasisBezier3, px)\n    + \",\" + d3_svg_lineDot4(d3_svg_lineBasisBezier3, py));\n  --i; while (++i < n) {\n    pi = points[i];\n    px.shift(); px.push(pi[0]);\n    py.shift(); py.push(pi[1]);\n    d3_svg_lineBasisBezier(path, px, py);\n  }\n  return path.join(\"\");\n}\n\n// Closed B-spline interpolation; generates \"C\" commands.\nfunction d3_svg_lineBasisClosed(points) {\n  var path,\n      i = -1,\n      n = points.length,\n      m = n + 4,\n      pi,\n      px = [],\n      py = [];\n  while (++i < 4) {\n    pi = points[i % n];\n    px.push(pi[0]);\n    py.push(pi[1]);\n  }\n  path = [\n    d3_svg_lineDot4(d3_svg_lineBasisBezier3, px), \",\",\n    d3_svg_lineDot4(d3_svg_lineBasisBezier3, py)\n  ];\n  --i; while (++i < m) {\n    pi = points[i % n];\n    px.shift(); px.push(pi[0]);\n    py.shift(); py.push(pi[1]);\n    d3_svg_lineBasisBezier(path, px, py);\n  }\n  return path.join(\"\");\n}\n\nfunction d3_svg_lineBundle(points, tension) {\n  var n = points.length - 1,\n      x0 = points[0][0],\n      y0 = points[0][1],\n      dx = points[n][0] - x0,\n      dy = points[n][1] - y0,\n      i = -1,\n      p,\n      t;\n  while (++i <= n) {\n    p = points[i];\n    t = i / n;\n    p[0] = tension * p[0] + (1 - tension) * (x0 + t * dx);\n    p[1] = tension * p[1] + (1 - tension) * (y0 + t * dy);\n  }\n  return d3_svg_lineBasis(points);\n}\n\n// Returns the dot product of the given four-element vectors.\nfunction d3_svg_lineDot4(a, b) {\n  return a[0] * b[0] + a[1] * b[1] + a[2] * b[2] + a[3] * b[3];\n}\n\n// Matrix to transform basis (b-spline) control points to bezier\n// control points. Derived from FvD 11.2.8.\nvar d3_svg_lineBasisBezier1 = [0, 2/3, 1/3, 0],\n    d3_svg_lineBasisBezier2 = [0, 1/3, 2/3, 0],\n    d3_svg_lineBasisBezier3 = [0, 1/6, 2/3, 1/6];\n\n// Pushes a \"C\" Bézier curve onto the specified path array, given the\n// two specified four-element arrays which define the control points.\nfunction d3_svg_lineBasisBezier(path, x, y) {\n  path.push(\n      \"C\", d3_svg_lineDot4(d3_svg_lineBasisBezier1, x),\n      \",\", d3_svg_lineDot4(d3_svg_lineBasisBezier1, y),\n      \",\", d3_svg_lineDot4(d3_svg_lineBasisBezier2, x),\n      \",\", d3_svg_lineDot4(d3_svg_lineBasisBezier2, y),\n      \",\", d3_svg_lineDot4(d3_svg_lineBasisBezier3, x),\n      \",\", d3_svg_lineDot4(d3_svg_lineBasisBezier3, y));\n}\n\n// Computes the slope from points p0 to p1.\nfunction d3_svg_lineSlope(p0, p1) {\n  return (p1[1] - p0[1]) / (p1[0] - p0[0]);\n}\n\n// Compute three-point differences for the given points.\n// http://en.wikipedia.org/wiki/Cubic_Hermite_spline#Finite_difference\nfunction d3_svg_lineFiniteDifferences(points) {\n  var i = 0,\n      j = points.length - 1,\n      m = [],\n      p0 = points[0],\n      p1 = points[1],\n      d = m[0] = d3_svg_lineSlope(p0, p1);\n  while (++i < j) {\n    m[i] = d + (d = d3_svg_lineSlope(p0 = p1, p1 = points[i + 1]));\n  }\n  m[i] = d;\n  return m;\n}\n\n// Interpolates the given points using Fritsch-Carlson Monotone cubic Hermite\n// interpolation. Returns an array of tangent vectors. For details, see\n// http://en.wikipedia.org/wiki/Monotone_cubic_interpolation\nfunction d3_svg_lineMonotoneTangents(points) {\n  var tangents = [],\n      d,\n      a,\n      b,\n      s,\n      m = d3_svg_lineFiniteDifferences(points),\n      i = -1,\n      j = points.length - 1;\n\n  // The first two steps are done by computing finite-differences:\n  // 1. Compute the slopes of the secant lines between successive points.\n  // 2. Initialize the tangents at every point as the average of the secants.\n\n  // Then, for each segment…\n  while (++i < j) {\n    d = d3_svg_lineSlope(points[i], points[i + 1]);\n\n    // 3. If two successive yk = y{k + 1} are equal (i.e., d is zero), then set\n    // mk = m{k + 1} = 0 as the spline connecting these points must be flat to\n    // preserve monotonicity. Ignore step 4 and 5 for those k.\n\n    if (Math.abs(d) < 1e-6) {\n      m[i] = m[i + 1] = 0;\n    } else {\n      // 4. Let ak = mk / dk and bk = m{k + 1} / dk.\n      a = m[i] / d;\n      b = m[i + 1] / d;\n\n      // 5. Prevent overshoot and ensure monotonicity by restricting the\n      // magnitude of vector <ak, bk> to a circle of radius 3.\n      s = a * a + b * b;\n      if (s > 9) {\n        s = d * 3 / Math.sqrt(s);\n        m[i] = s * a;\n        m[i + 1] = s * b;\n      }\n    }\n  }\n\n  // Compute the normalized tangent vector from the slopes. Note that if x is\n  // not monotonic, it's possible that the slope will be infinite, so we protect\n  // against NaN by setting the coordinate to zero.\n  i = -1; while (++i <= j) {\n    s = (points[Math.min(j, i + 1)][0] - points[Math.max(0, i - 1)][0])\n      / (6 * (1 + m[i] * m[i]));\n    tangents.push([s || 0, m[i] * s || 0]);\n  }\n\n  return tangents;\n}\n\nfunction d3_svg_lineMonotone(points) {\n  return points.length < 3\n      ? d3_svg_lineLinear(points)\n      : points[0] +\n        d3_svg_lineHermite(points, d3_svg_lineMonotoneTangents(points));\n}\nd3.svg.line.radial = function() {\n  var line = d3_svg_line(d3_svg_lineRadial);\n  line.radius = line.x, delete line.x;\n  line.angle = line.y, delete line.y;\n  return line;\n};\n\nfunction d3_svg_lineRadial(points) {\n  var point,\n      i = -1,\n      n = points.length,\n      r,\n      a;\n  while (++i < n) {\n    point = points[i];\n    r = point[0];\n    a = point[1] + d3_svg_arcOffset;\n    point[0] = r * Math.cos(a);\n    point[1] = r * Math.sin(a);\n  }\n  return points;\n}\nfunction d3_svg_area(projection) {\n  var x0 = d3_svg_lineX,\n      x1 = d3_svg_lineX,\n      y0 = 0,\n      y1 = d3_svg_lineY,\n      interpolate,\n      i0,\n      i1,\n      tension = .7;\n\n  function area(d) {\n    if (d.length < 1) return null;\n    var points0 = d3_svg_linePoints(this, d, x0, y0),\n        points1 = d3_svg_linePoints(this, d, x0 === x1 ? d3_svg_areaX(points0) : x1, y0 === y1 ? d3_svg_areaY(points0) : y1);\n    return \"M\" + i0(projection(points1), tension)\n         + \"L\" + i1(projection(points0.reverse()), tension)\n         + \"Z\";\n  }\n\n  area.x = function(x) {\n    if (!arguments.length) return x1;\n    x0 = x1 = x;\n    return area;\n  };\n\n  area.x0 = function(x) {\n    if (!arguments.length) return x0;\n    x0 = x;\n    return area;\n  };\n\n  area.x1 = function(x) {\n    if (!arguments.length) return x1;\n    x1 = x;\n    return area;\n  };\n\n  area.y = function(y) {\n    if (!arguments.length) return y1;\n    y0 = y1 = y;\n    return area;\n  };\n\n  area.y0 = function(y) {\n    if (!arguments.length) return y0;\n    y0 = y;\n    return area;\n  };\n\n  area.y1 = function(y) {\n    if (!arguments.length) return y1;\n    y1 = y;\n    return area;\n  };\n\n  area.interpolate = function(x) {\n    if (!arguments.length) return interpolate;\n    if (!d3_svg_lineInterpolators.has(x += \"\")) x = d3_svg_lineInterpolatorDefault;\n    i0 = d3_svg_lineInterpolators.get(interpolate = x);\n    i1 = i0.reverse || i0;\n    return area;\n  };\n\n  area.tension = function(x) {\n    if (!arguments.length) return tension;\n    tension = x;\n    return area;\n  };\n\n  return area.interpolate(\"linear\");\n}\n\nd3_svg_lineStepBefore.reverse = d3_svg_lineStepAfter;\nd3_svg_lineStepAfter.reverse = d3_svg_lineStepBefore;\n\nd3.svg.area = function() {\n  return d3_svg_area(Object);\n};\n\nfunction d3_svg_areaX(points) {\n  return function(d, i) {\n    return points[i][0];\n  };\n}\n\nfunction d3_svg_areaY(points) {\n  return function(d, i) {\n    return points[i][1];\n  };\n}\nd3.svg.area.radial = function() {\n  var area = d3_svg_area(d3_svg_lineRadial);\n  area.radius = area.x, delete area.x;\n  area.innerRadius = area.x0, delete area.x0;\n  area.outerRadius = area.x1, delete area.x1;\n  area.angle = area.y, delete area.y;\n  area.startAngle = area.y0, delete area.y0;\n  area.endAngle = area.y1, delete area.y1;\n  return area;\n};\nd3.svg.chord = function() {\n  var source = d3_svg_chordSource,\n      target = d3_svg_chordTarget,\n      radius = d3_svg_chordRadius,\n      startAngle = d3_svg_arcStartAngle,\n      endAngle = d3_svg_arcEndAngle;\n\n  // TODO Allow control point to be customized.\n\n  function chord(d, i) {\n    var s = subgroup(this, source, d, i),\n        t = subgroup(this, target, d, i);\n    return \"M\" + s.p0\n      + arc(s.r, s.p1, s.a1 - s.a0) + (equals(s, t)\n      ? curve(s.r, s.p1, s.r, s.p0)\n      : curve(s.r, s.p1, t.r, t.p0)\n      + arc(t.r, t.p1, t.a1 - t.a0)\n      + curve(t.r, t.p1, s.r, s.p0))\n      + \"Z\";\n  }\n\n  function subgroup(self, f, d, i) {\n    var subgroup = f.call(self, d, i),\n        r = radius.call(self, subgroup, i),\n        a0 = startAngle.call(self, subgroup, i) + d3_svg_arcOffset,\n        a1 = endAngle.call(self, subgroup, i) + d3_svg_arcOffset;\n    return {\n      r: r,\n      a0: a0,\n      a1: a1,\n      p0: [r * Math.cos(a0), r * Math.sin(a0)],\n      p1: [r * Math.cos(a1), r * Math.sin(a1)]\n    };\n  }\n\n  function equals(a, b) {\n    return a.a0 == b.a0 && a.a1 == b.a1;\n  }\n\n  function arc(r, p, a) {\n    return \"A\" + r + \",\" + r + \" 0 \" + +(a > Math.PI) + \",1 \" + p;\n  }\n\n  function curve(r0, p0, r1, p1) {\n    return \"Q 0,0 \" + p1;\n  }\n\n  chord.radius = function(v) {\n    if (!arguments.length) return radius;\n    radius = d3.functor(v);\n    return chord;\n  };\n\n  chord.source = function(v) {\n    if (!arguments.length) return source;\n    source = d3.functor(v);\n    return chord;\n  };\n\n  chord.target = function(v) {\n    if (!arguments.length) return target;\n    target = d3.functor(v);\n    return chord;\n  };\n\n  chord.startAngle = function(v) {\n    if (!arguments.length) return startAngle;\n    startAngle = d3.functor(v);\n    return chord;\n  };\n\n  chord.endAngle = function(v) {\n    if (!arguments.length) return endAngle;\n    endAngle = d3.functor(v);\n    return chord;\n  };\n\n  return chord;\n};\n\nfunction d3_svg_chordSource(d) {\n  return d.source;\n}\n\nfunction d3_svg_chordTarget(d) {\n  return d.target;\n}\n\nfunction d3_svg_chordRadius(d) {\n  return d.radius;\n}\n\nfunction d3_svg_chordStartAngle(d) {\n  return d.startAngle;\n}\n\nfunction d3_svg_chordEndAngle(d) {\n  return d.endAngle;\n}\nd3.svg.diagonal = function() {\n  var source = d3_svg_chordSource,\n      target = d3_svg_chordTarget,\n      projection = d3_svg_diagonalProjection;\n\n  function diagonal(d, i) {\n    var p0 = source.call(this, d, i),\n        p3 = target.call(this, d, i),\n        m = (p0.y + p3.y) / 2,\n        p = [p0, {x: p0.x, y: m}, {x: p3.x, y: m}, p3];\n    p = p.map(projection);\n    return \"M\" + p[0] + \"C\" + p[1] + \" \" + p[2] + \" \" + p[3];\n  }\n\n  diagonal.source = function(x) {\n    if (!arguments.length) return source;\n    source = d3.functor(x);\n    return diagonal;\n  };\n\n  diagonal.target = function(x) {\n    if (!arguments.length) return target;\n    target = d3.functor(x);\n    return diagonal;\n  };\n\n  diagonal.projection = function(x) {\n    if (!arguments.length) return projection;\n    projection = x;\n    return diagonal;\n  };\n\n  return diagonal;\n};\n\nfunction d3_svg_diagonalProjection(d) {\n  return [d.x, d.y];\n}\nd3.svg.diagonal.radial = function() {\n  var diagonal = d3.svg.diagonal(),\n      projection = d3_svg_diagonalProjection,\n      projection_ = diagonal.projection;\n\n  diagonal.projection = function(x) {\n    return arguments.length\n        ? projection_(d3_svg_diagonalRadialProjection(projection = x))\n        : projection;\n  };\n\n  return diagonal;\n};\n\nfunction d3_svg_diagonalRadialProjection(projection) {\n  return function() {\n    var d = projection.apply(this, arguments),\n        r = d[0],\n        a = d[1] + d3_svg_arcOffset;\n    return [r * Math.cos(a), r * Math.sin(a)];\n  };\n}\nd3.svg.mouse = d3.mouse;\nd3.svg.touches = d3.touches;\nd3.svg.symbol = function() {\n  var type = d3_svg_symbolType,\n      size = d3_svg_symbolSize;\n\n  function symbol(d, i) {\n    return (d3_svg_symbols.get(type.call(this, d, i))\n        || d3_svg_symbolCircle)\n        (size.call(this, d, i));\n  }\n\n  symbol.type = function(x) {\n    if (!arguments.length) return type;\n    type = d3.functor(x);\n    return symbol;\n  };\n\n  // size of symbol in square pixels\n  symbol.size = function(x) {\n    if (!arguments.length) return size;\n    size = d3.functor(x);\n    return symbol;\n  };\n\n  return symbol;\n};\n\nfunction d3_svg_symbolSize() {\n  return 64;\n}\n\nfunction d3_svg_symbolType() {\n  return \"circle\";\n}\n\nfunction d3_svg_symbolCircle(size) {\n  var r = Math.sqrt(size / Math.PI);\n  return \"M0,\" + r\n      + \"A\" + r + \",\" + r + \" 0 1,1 0,\" + (-r)\n      + \"A\" + r + \",\" + r + \" 0 1,1 0,\" + r\n      + \"Z\";\n}\n\n// TODO cross-diagonal?\nvar d3_svg_symbols = d3.map({\n  \"circle\": d3_svg_symbolCircle,\n  \"cross\": function(size) {\n    var r = Math.sqrt(size / 5) / 2;\n    return \"M\" + -3 * r + \",\" + -r\n        + \"H\" + -r\n        + \"V\" + -3 * r\n        + \"H\" + r\n        + \"V\" + -r\n        + \"H\" + 3 * r\n        + \"V\" + r\n        + \"H\" + r\n        + \"V\" + 3 * r\n        + \"H\" + -r\n        + \"V\" + r\n        + \"H\" + -3 * r\n        + \"Z\";\n  },\n  \"diamond\": function(size) {\n    var ry = Math.sqrt(size / (2 * d3_svg_symbolTan30)),\n        rx = ry * d3_svg_symbolTan30;\n    return \"M0,\" + -ry\n        + \"L\" + rx + \",0\"\n        + \" 0,\" + ry\n        + \" \" + -rx + \",0\"\n        + \"Z\";\n  },\n  \"square\": function(size) {\n    var r = Math.sqrt(size) / 2;\n    return \"M\" + -r + \",\" + -r\n        + \"L\" + r + \",\" + -r\n        + \" \" + r + \",\" + r\n        + \" \" + -r + \",\" + r\n        + \"Z\";\n  },\n  \"triangle-down\": function(size) {\n    var rx = Math.sqrt(size / d3_svg_symbolSqrt3),\n        ry = rx * d3_svg_symbolSqrt3 / 2;\n    return \"M0,\" + ry\n        + \"L\" + rx +\",\" + -ry\n        + \" \" + -rx + \",\" + -ry\n        + \"Z\";\n  },\n  \"triangle-up\": function(size) {\n    var rx = Math.sqrt(size / d3_svg_symbolSqrt3),\n        ry = rx * d3_svg_symbolSqrt3 / 2;\n    return \"M0,\" + -ry\n        + \"L\" + rx +\",\" + ry\n        + \" \" + -rx + \",\" + ry\n        + \"Z\";\n  }\n});\n\nd3.svg.symbolTypes = d3_svg_symbols.keys();\n\nvar d3_svg_symbolSqrt3 = Math.sqrt(3),\n    d3_svg_symbolTan30 = Math.tan(30 * Math.PI / 180);\nd3.svg.axis = function() {\n  var scale = d3.scale.linear(),\n      orient = \"bottom\",\n      tickMajorSize = 6,\n      tickMinorSize = 6,\n      tickEndSize = 6,\n      tickPadding = 3,\n      tickArguments_ = [10],\n      tickValues = null,\n      tickFormat_,\n      tickSubdivide = 0;\n\n  function axis(g) {\n    g.each(function() {\n      var g = d3.select(this);\n\n      // Ticks, or domain values for ordinal scales.\n      var ticks = tickValues == null ? (scale.ticks ? scale.ticks.apply(scale, tickArguments_) : scale.domain()) : tickValues,\n          tickFormat = tickFormat_ == null ? (scale.tickFormat ? scale.tickFormat.apply(scale, tickArguments_) : String) : tickFormat_;\n\n      // Minor ticks.\n      var subticks = d3_svg_axisSubdivide(scale, ticks, tickSubdivide),\n          subtick = g.selectAll(\".minor\").data(subticks, String),\n          subtickEnter = subtick.enter().insert(\"line\", \"g\").attr(\"class\", \"tick minor\").style(\"opacity\", 1e-6),\n          subtickExit = d3.transition(subtick.exit()).style(\"opacity\", 1e-6).remove(),\n          subtickUpdate = d3.transition(subtick).style(\"opacity\", 1);\n\n      // Major ticks.\n      var tick = g.selectAll(\"g\").data(ticks, String),\n          tickEnter = tick.enter().insert(\"g\", \"path\").style(\"opacity\", 1e-6),\n          tickExit = d3.transition(tick.exit()).style(\"opacity\", 1e-6).remove(),\n          tickUpdate = d3.transition(tick).style(\"opacity\", 1),\n          tickTransform;\n\n      // Domain.\n      var range = d3_scaleRange(scale),\n          path = g.selectAll(\".domain\").data([0]),\n          pathEnter = path.enter().append(\"path\").attr(\"class\", \"domain\"),\n          pathUpdate = d3.transition(path);\n\n      // Stash a snapshot of the new scale, and retrieve the old snapshot.\n      var scale1 = scale.copy(),\n          scale0 = this.__chart__ || scale1;\n      this.__chart__ = scale1;\n\n      tickEnter.append(\"line\").attr(\"class\", \"tick\");\n      tickEnter.append(\"text\");\n      tickUpdate.select(\"text\").text(tickFormat);\n\n      switch (orient) {\n        case \"bottom\": {\n          tickTransform = d3_svg_axisX;\n          subtickEnter.attr(\"y2\", tickMinorSize);\n          subtickUpdate.attr(\"x2\", 0).attr(\"y2\", tickMinorSize);\n          tickEnter.select(\"line\").attr(\"y2\", tickMajorSize);\n          tickEnter.select(\"text\").attr(\"y\", Math.max(tickMajorSize, 0) + tickPadding);\n          tickUpdate.select(\"line\").attr(\"x2\", 0).attr(\"y2\", tickMajorSize);\n          tickUpdate.select(\"text\").attr(\"x\", 0).attr(\"y\", Math.max(tickMajorSize, 0) + tickPadding).attr(\"dy\", \".71em\").attr(\"text-anchor\", \"middle\");\n          pathUpdate.attr(\"d\", \"M\" + range[0] + \",\" + tickEndSize + \"V0H\" + range[1] + \"V\" + tickEndSize);\n          break;\n        }\n        case \"top\": {\n          tickTransform = d3_svg_axisX;\n          subtickEnter.attr(\"y2\", -tickMinorSize);\n          subtickUpdate.attr(\"x2\", 0).attr(\"y2\", -tickMinorSize);\n          tickEnter.select(\"line\").attr(\"y2\", -tickMajorSize);\n          tickEnter.select(\"text\").attr(\"y\", -(Math.max(tickMajorSize, 0) + tickPadding));\n          tickUpdate.select(\"line\").attr(\"x2\", 0).attr(\"y2\", -tickMajorSize);\n          tickUpdate.select(\"text\").attr(\"x\", 0).attr(\"y\", -(Math.max(tickMajorSize, 0) + tickPadding)).attr(\"dy\", \"0em\").attr(\"text-anchor\", \"middle\");\n          pathUpdate.attr(\"d\", \"M\" + range[0] + \",\" + -tickEndSize + \"V0H\" + range[1] + \"V\" + -tickEndSize);\n          break;\n        }\n        case \"left\": {\n          tickTransform = d3_svg_axisY;\n          subtickEnter.attr(\"x2\", -tickMinorSize);\n          subtickUpdate.attr(\"x2\", -tickMinorSize).attr(\"y2\", 0);\n          tickEnter.select(\"line\").attr(\"x2\", -tickMajorSize);\n          tickEnter.select(\"text\").attr(\"x\", -(Math.max(tickMajorSize, 0) + tickPadding));\n          tickUpdate.select(\"line\").attr(\"x2\", -tickMajorSize).attr(\"y2\", 0);\n          tickUpdate.select(\"text\").attr(\"x\", -(Math.max(tickMajorSize, 0) + tickPadding)).attr(\"y\", 0).attr(\"dy\", \".32em\").attr(\"text-anchor\", \"end\");\n          pathUpdate.attr(\"d\", \"M\" + -tickEndSize + \",\" + range[0] + \"H0V\" + range[1] + \"H\" + -tickEndSize);\n          break;\n        }\n        case \"right\": {\n          tickTransform = d3_svg_axisY;\n          subtickEnter.attr(\"x2\", tickMinorSize);\n          subtickUpdate.attr(\"x2\", tickMinorSize).attr(\"y2\", 0);\n          tickEnter.select(\"line\").attr(\"x2\", tickMajorSize);\n          tickEnter.select(\"text\").attr(\"x\", Math.max(tickMajorSize, 0) + tickPadding);\n          tickUpdate.select(\"line\").attr(\"x2\", tickMajorSize).attr(\"y2\", 0);\n          tickUpdate.select(\"text\").attr(\"x\", Math.max(tickMajorSize, 0) + tickPadding).attr(\"y\", 0).attr(\"dy\", \".32em\").attr(\"text-anchor\", \"start\");\n          pathUpdate.attr(\"d\", \"M\" + tickEndSize + \",\" + range[0] + \"H0V\" + range[1] + \"H\" + tickEndSize);\n          break;\n        }\n      }\n\n      // For quantitative scales:\n      // - enter new ticks from the old scale\n      // - exit old ticks to the new scale\n      if (scale.ticks) {\n        tickEnter.call(tickTransform, scale0);\n        tickUpdate.call(tickTransform, scale1);\n        tickExit.call(tickTransform, scale1);\n        subtickEnter.call(tickTransform, scale0);\n        subtickUpdate.call(tickTransform, scale1);\n        subtickExit.call(tickTransform, scale1);\n      }\n\n      // For ordinal scales:\n      // - any entering ticks are undefined in the old scale\n      // - any exiting ticks are undefined in the new scale\n      // Therefore, we only need to transition updating ticks.\n      else {\n        var dx = scale1.rangeBand() / 2, x = function(d) { return scale1(d) + dx; };\n        tickEnter.call(tickTransform, x);\n        tickUpdate.call(tickTransform, x);\n      }\n    });\n  }\n\n  axis.scale = function(x) {\n    if (!arguments.length) return scale;\n    scale = x;\n    return axis;\n  };\n\n  axis.orient = function(x) {\n    if (!arguments.length) return orient;\n    orient = x;\n    return axis;\n  };\n\n  axis.ticks = function() {\n    if (!arguments.length) return tickArguments_;\n    tickArguments_ = arguments;\n    return axis;\n  };\n\n  axis.tickValues = function(x) {\n    if (!arguments.length) return tickValues;\n    tickValues = x;\n    return axis;\n  };\n\n  axis.tickFormat = function(x) {\n    if (!arguments.length) return tickFormat_;\n    tickFormat_ = x;\n    return axis;\n  };\n\n  axis.tickSize = function(x, y, z) {\n    if (!arguments.length) return tickMajorSize;\n    var n = arguments.length - 1;\n    tickMajorSize = +x;\n    tickMinorSize = n > 1 ? +y : tickMajorSize;\n    tickEndSize = n > 0 ? +arguments[n] : tickMajorSize;\n    return axis;\n  };\n\n  axis.tickPadding = function(x) {\n    if (!arguments.length) return tickPadding;\n    tickPadding = +x;\n    return axis;\n  };\n\n  axis.tickSubdivide = function(x) {\n    if (!arguments.length) return tickSubdivide;\n    tickSubdivide = +x;\n    return axis;\n  };\n\n  return axis;\n};\n\nfunction d3_svg_axisX(selection, x) {\n  selection.attr(\"transform\", function(d) { return \"translate(\" + x(d) + \",0)\"; });\n}\n\nfunction d3_svg_axisY(selection, y) {\n  selection.attr(\"transform\", function(d) { return \"translate(0,\" + y(d) + \")\"; });\n}\n\nfunction d3_svg_axisSubdivide(scale, ticks, m) {\n  subticks = [];\n  if (m && ticks.length > 1) {\n    var extent = d3_scaleExtent(scale.domain()),\n        subticks,\n        i = -1,\n        n = ticks.length,\n        d = (ticks[1] - ticks[0]) / ++m,\n        j,\n        v;\n    while (++i < n) {\n      for (j = m; --j > 0;) {\n        if ((v = +ticks[i] - j * d) >= extent[0]) {\n          subticks.push(v);\n        }\n      }\n    }\n    for (--i, j = 0; ++j < m && (v = +ticks[i] + j * d) < extent[1];) {\n      subticks.push(v);\n    }\n  }\n  return subticks;\n}\nd3.svg.brush = function() {\n  var event = d3_eventDispatch(brush, \"brushstart\", \"brush\", \"brushend\"),\n      x = null, // x-scale, optional\n      y = null, // y-scale, optional\n      resizes = d3_svg_brushResizes[0],\n      extent = [[0, 0], [0, 0]], // [x0, y0], [x1, y1], in pixels (integers)\n      extentDomain; // the extent in data space, lazily created\n\n  function brush(g) {\n    g.each(function() {\n      var g = d3.select(this),\n          bg = g.selectAll(\".background\").data([0]),\n          fg = g.selectAll(\".extent\").data([0]),\n          tz = g.selectAll(\".resize\").data(resizes, String),\n          e;\n\n      // Prepare the brush container for events.\n      g\n          .style(\"pointer-events\", \"all\")\n          .on(\"mousedown.brush\", brushstart)\n          .on(\"touchstart.brush\", brushstart);\n\n      // An invisible, mouseable area for starting a new brush.\n      bg.enter().append(\"rect\")\n          .attr(\"class\", \"background\")\n          .style(\"visibility\", \"hidden\")\n          .style(\"cursor\", \"crosshair\");\n\n      // The visible brush extent; style this as you like!\n      fg.enter().append(\"rect\")\n          .attr(\"class\", \"extent\")\n          .style(\"cursor\", \"move\");\n\n      // More invisible rects for resizing the extent.\n      tz.enter().append(\"g\")\n          .attr(\"class\", function(d) { return \"resize \" + d; })\n          .style(\"cursor\", function(d) { return d3_svg_brushCursor[d]; })\n        .append(\"rect\")\n          .attr(\"x\", function(d) { return /[ew]$/.test(d) ? -3 : null; })\n          .attr(\"y\", function(d) { return /^[ns]/.test(d) ? -3 : null; })\n          .attr(\"width\", 6)\n          .attr(\"height\", 6)\n          .style(\"visibility\", \"hidden\");\n\n      // Show or hide the resizers.\n      tz.style(\"display\", brush.empty() ? \"none\" : null);\n\n      // Remove any superfluous resizers.\n      tz.exit().remove();\n\n      // Initialize the background to fill the defined range.\n      // If the range isn't defined, you can post-process.\n      if (x) {\n        e = d3_scaleRange(x);\n        bg.attr(\"x\", e[0]).attr(\"width\", e[1] - e[0]);\n        redrawX(g);\n      }\n      if (y) {\n        e = d3_scaleRange(y);\n        bg.attr(\"y\", e[0]).attr(\"height\", e[1] - e[0]);\n        redrawY(g);\n      }\n      redraw(g);\n    });\n  }\n\n  function redraw(g) {\n    g.selectAll(\".resize\").attr(\"transform\", function(d) {\n      return \"translate(\" + extent[+/e$/.test(d)][0] + \",\" + extent[+/^s/.test(d)][1] + \")\";\n    });\n  }\n\n  function redrawX(g) {\n    g.select(\".extent\").attr(\"x\", extent[0][0]);\n    g.selectAll(\".extent,.n>rect,.s>rect\").attr(\"width\", extent[1][0] - extent[0][0]);\n  }\n\n  function redrawY(g) {\n    g.select(\".extent\").attr(\"y\", extent[0][1]);\n    g.selectAll(\".extent,.e>rect,.w>rect\").attr(\"height\", extent[1][1] - extent[0][1]);\n  }\n\n  function brushstart() {\n    var target = this,\n        eventTarget = d3.select(d3.event.target),\n        event_ = event.of(target, arguments),\n        g = d3.select(target),\n        resizing = eventTarget.datum(),\n        resizingX = !/^(n|s)$/.test(resizing) && x,\n        resizingY = !/^(e|w)$/.test(resizing) && y,\n        dragging = eventTarget.classed(\"extent\"),\n        center,\n        origin = mouse(),\n        offset;\n\n    var w = d3.select(window)\n        .on(\"mousemove.brush\", brushmove)\n        .on(\"mouseup.brush\", brushend)\n        .on(\"touchmove.brush\", brushmove)\n        .on(\"touchend.brush\", brushend)\n        .on(\"keydown.brush\", keydown)\n        .on(\"keyup.brush\", keyup);\n\n    // If the extent was clicked on, drag rather than brush;\n    // store the point between the mouse and extent origin instead.\n    if (dragging) {\n      origin[0] = extent[0][0] - origin[0];\n      origin[1] = extent[0][1] - origin[1];\n    }\n\n    // If a resizer was clicked on, record which side is to be resized.\n    // Also, set the origin to the opposite side.\n    else if (resizing) {\n      var ex = +/w$/.test(resizing),\n          ey = +/^n/.test(resizing);\n      offset = [extent[1 - ex][0] - origin[0], extent[1 - ey][1] - origin[1]];\n      origin[0] = extent[ex][0];\n      origin[1] = extent[ey][1];\n    }\n\n    // If the ALT key is down when starting a brush, the center is at the mouse.\n    else if (d3.event.altKey) center = origin.slice();\n\n    // Propagate the active cursor to the body for the drag duration.\n    g.style(\"pointer-events\", \"none\").selectAll(\".resize\").style(\"display\", null);\n    d3.select(\"body\").style(\"cursor\", eventTarget.style(\"cursor\"));\n\n    // Notify listeners.\n    event_({type: \"brushstart\"});\n    brushmove();\n    d3_eventCancel();\n\n    function mouse() {\n      var touches = d3.event.changedTouches;\n      return touches ? d3.touches(target, touches)[0] : d3.mouse(target);\n    }\n\n    function keydown() {\n      if (d3.event.keyCode == 32) {\n        if (!dragging) {\n          center = null;\n          origin[0] -= extent[1][0];\n          origin[1] -= extent[1][1];\n          dragging = 2;\n        }\n        d3_eventCancel();\n      }\n    }\n\n    function keyup() {\n      if (d3.event.keyCode == 32 && dragging == 2) {\n        origin[0] += extent[1][0];\n        origin[1] += extent[1][1];\n        dragging = 0;\n        d3_eventCancel();\n      }\n    }\n\n    function brushmove() {\n      var point = mouse(),\n          moved = false;\n\n      // Preserve the offset for thick resizers.\n      if (offset) {\n        point[0] += offset[0];\n        point[1] += offset[1];\n      }\n\n      if (!dragging) {\n\n        // If needed, determine the center from the current extent.\n        if (d3.event.altKey) {\n          if (!center) center = [(extent[0][0] + extent[1][0]) / 2, (extent[0][1] + extent[1][1]) / 2];\n\n          // Update the origin, for when the ALT key is released.\n          origin[0] = extent[+(point[0] < center[0])][0];\n          origin[1] = extent[+(point[1] < center[1])][1];\n        }\n\n        // When the ALT key is released, we clear the center.\n        else center = null;\n      }\n\n      // Update the brush extent for each dimension.\n      if (resizingX && move1(point, x, 0)) {\n        redrawX(g);\n        moved = true;\n      }\n      if (resizingY && move1(point, y, 1)) {\n        redrawY(g);\n        moved = true;\n      }\n\n      // Final redraw and notify listeners.\n      if (moved) {\n        redraw(g);\n        event_({type: \"brush\", mode: dragging ? \"move\" : \"resize\"});\n      }\n    }\n\n    function move1(point, scale, i) {\n      var range = d3_scaleRange(scale),\n          r0 = range[0],\n          r1 = range[1],\n          position = origin[i],\n          size = extent[1][i] - extent[0][i],\n          min,\n          max;\n\n      // When dragging, reduce the range by the extent size and position.\n      if (dragging) {\n        r0 -= position;\n        r1 -= size + position;\n      }\n\n      // Clamp the point so that the extent fits within the range extent.\n      min = Math.max(r0, Math.min(r1, point[i]));\n\n      // Compute the new extent bounds.\n      if (dragging) {\n        max = (min += position) + size;\n      } else {\n\n        // If the ALT key is pressed, then preserve the center of the extent.\n        if (center) position = Math.max(r0, Math.min(r1, 2 * center[i] - min));\n\n        // Compute the min and max of the position and point.\n        if (position < min) {\n          max = min;\n          min = position;\n        } else {\n          max = position;\n        }\n      }\n\n      // Update the stored bounds.\n      if (extent[0][i] !== min || extent[1][i] !== max) {\n        extentDomain = null;\n        extent[0][i] = min;\n        extent[1][i] = max;\n        return true;\n      }\n    }\n\n    function brushend() {\n      brushmove();\n\n      // reset the cursor styles\n      g.style(\"pointer-events\", \"all\").selectAll(\".resize\").style(\"display\", brush.empty() ? \"none\" : null);\n      d3.select(\"body\").style(\"cursor\", null);\n\n      w .on(\"mousemove.brush\", null)\n        .on(\"mouseup.brush\", null)\n        .on(\"touchmove.brush\", null)\n        .on(\"touchend.brush\", null)\n        .on(\"keydown.brush\", null)\n        .on(\"keyup.brush\", null);\n\n      event_({type: \"brushend\"});\n      d3_eventCancel();\n    }\n  }\n\n  brush.x = function(z) {\n    if (!arguments.length) return x;\n    x = z;\n    resizes = d3_svg_brushResizes[!x << 1 | !y]; // fore!\n    return brush;\n  };\n\n  brush.y = function(z) {\n    if (!arguments.length) return y;\n    y = z;\n    resizes = d3_svg_brushResizes[!x << 1 | !y]; // fore!\n    return brush;\n  };\n\n  brush.extent = function(z) {\n    var x0, x1, y0, y1, t;\n\n    // Invert the pixel extent to data-space.\n    if (!arguments.length) {\n      z = extentDomain || extent;\n      if (x) {\n        x0 = z[0][0], x1 = z[1][0];\n        if (!extentDomain) {\n          x0 = extent[0][0], x1 = extent[1][0];\n          if (x.invert) x0 = x.invert(x0), x1 = x.invert(x1);\n          if (x1 < x0) t = x0, x0 = x1, x1 = t;\n        }\n      }\n      if (y) {\n        y0 = z[0][1], y1 = z[1][1];\n        if (!extentDomain) {\n          y0 = extent[0][1], y1 = extent[1][1];\n          if (y.invert) y0 = y.invert(y0), y1 = y.invert(y1);\n          if (y1 < y0) t = y0, y0 = y1, y1 = t;\n        }\n      }\n      return x && y ? [[x0, y0], [x1, y1]] : x ? [x0, x1] : y && [y0, y1];\n    }\n\n    // Scale the data-space extent to pixels.\n    extentDomain = [[0, 0], [0, 0]];\n    if (x) {\n      x0 = z[0], x1 = z[1];\n      if (y) x0 = x0[0], x1 = x1[0];\n      extentDomain[0][0] = x0, extentDomain[1][0] = x1;\n      if (x.invert) x0 = x(x0), x1 = x(x1);\n      if (x1 < x0) t = x0, x0 = x1, x1 = t;\n      extent[0][0] = x0 | 0, extent[1][0] = x1 | 0;\n    }\n    if (y) {\n      y0 = z[0], y1 = z[1];\n      if (x) y0 = y0[1], y1 = y1[1];\n      extentDomain[0][1] = y0, extentDomain[1][1] = y1;\n      if (y.invert) y0 = y(y0), y1 = y(y1);\n      if (y1 < y0) t = y0, y0 = y1, y1 = t;\n      extent[0][1] = y0 | 0, extent[1][1] = y1 | 0;\n    }\n\n    return brush;\n  };\n\n  brush.clear = function() {\n    extentDomain = null;\n    extent[0][0] =\n    extent[0][1] =\n    extent[1][0] =\n    extent[1][1] = 0;\n    return brush;\n  };\n\n  brush.empty = function() {\n    return (x && extent[0][0] === extent[1][0])\n        || (y && extent[0][1] === extent[1][1]);\n  };\n\n  return d3.rebind(brush, event, \"on\");\n};\n\nvar d3_svg_brushCursor = {\n  n: \"ns-resize\",\n  e: \"ew-resize\",\n  s: \"ns-resize\",\n  w: \"ew-resize\",\n  nw: \"nwse-resize\",\n  ne: \"nesw-resize\",\n  se: \"nwse-resize\",\n  sw: \"nesw-resize\"\n};\n\nvar d3_svg_brushResizes = [\n  [\"n\", \"e\", \"s\", \"w\", \"nw\", \"ne\", \"se\", \"sw\"],\n  [\"e\", \"w\"],\n  [\"n\", \"s\"],\n  []\n];\nd3.behavior = {};\n// TODO Track touch points by identifier.\n\nd3.behavior.drag = function() {\n  var event = d3_eventDispatch(drag, \"drag\", \"dragstart\", \"dragend\"),\n      origin = null;\n\n  function drag() {\n    this.on(\"mousedown.drag\", mousedown)\n        .on(\"touchstart.drag\", mousedown);\n  }\n\n  function mousedown() {\n    var target = this,\n        event_ = event.of(target, arguments),\n        eventTarget = d3.event.target,\n        offset,\n        origin_ = point(),\n        moved = 0;\n\n    var w = d3.select(window)\n        .on(\"mousemove.drag\", dragmove)\n        .on(\"touchmove.drag\", dragmove)\n        .on(\"mouseup.drag\", dragend, true)\n        .on(\"touchend.drag\", dragend, true);\n\n    if (origin) {\n      offset = origin.apply(target, arguments);\n      offset = [offset.x - origin_[0], offset.y - origin_[1]];\n    } else {\n      offset = [0, 0];\n    }\n\n    event_({type: \"dragstart\"});\n\n    function point() {\n      var p = target.parentNode,\n          t = d3.event.changedTouches;\n      return t ? d3.touches(p, t)[0] : d3.mouse(p);\n    }\n\n    function dragmove() {\n      if (!target.parentNode) return dragend(); // target removed from DOM\n\n      var p = point(),\n          dx = p[0] - origin_[0],\n          dy = p[1] - origin_[1];\n\n      moved |= dx | dy;\n      origin_ = p;\n      d3_eventCancel();\n\n      event_({type: \"drag\", x: p[0] + offset[0], y: p[1] + offset[1], dx: dx, dy: dy});\n    }\n\n    function dragend() {\n      event_({type: \"dragend\"});\n\n      // if moved, prevent the mouseup (and possibly click) from propagating\n      if (moved) {\n        d3_eventCancel();\n        if (d3.event.target === eventTarget) w.on(\"click.drag\", click, true);\n      }\n\n      w .on(\"mousemove.drag\", null)\n        .on(\"touchmove.drag\", null)\n        .on(\"mouseup.drag\", null)\n        .on(\"touchend.drag\", null);\n    }\n\n    // prevent the subsequent click from propagating (e.g., for anchors)\n    function click() {\n      d3_eventCancel();\n      w.on(\"click.drag\", null);\n    }\n  }\n\n  drag.origin = function(x) {\n    if (!arguments.length) return origin;\n    origin = x;\n    return drag;\n  };\n\n  return d3.rebind(drag, event, \"on\");\n};\nd3.behavior.zoom = function() {\n  var translate = [0, 0],\n      translate0, // translate when we started zooming (to avoid drift)\n      scale = 1,\n      scale0, // scale when we started touching\n      scaleExtent = d3_behavior_zoomInfinity,\n      event = d3_eventDispatch(zoom, \"zoom\"),\n      x0,\n      x1,\n      y0,\n      y1,\n      touchtime; // time of last touchstart (to detect double-tap)\n\n  function zoom() {\n    this\n        .on(\"mousedown.zoom\", mousedown)\n        .on(\"mousewheel.zoom\", mousewheel)\n        .on(\"mousemove.zoom\", mousemove)\n        .on(\"DOMMouseScroll.zoom\", mousewheel)\n        .on(\"dblclick.zoom\", dblclick)\n        .on(\"touchstart.zoom\", touchstart)\n        .on(\"touchmove.zoom\", touchmove)\n        .on(\"touchend.zoom\", touchstart);\n  }\n\n  zoom.translate = function(x) {\n    if (!arguments.length) return translate;\n    translate = x.map(Number);\n    return zoom;\n  };\n\n  zoom.scale = function(x) {\n    if (!arguments.length) return scale;\n    scale = +x;\n    return zoom;\n  };\n\n  zoom.scaleExtent = function(x) {\n    if (!arguments.length) return scaleExtent;\n    scaleExtent = x == null ? d3_behavior_zoomInfinity : x.map(Number);\n    return zoom;\n  };\n\n  zoom.x = function(z) {\n    if (!arguments.length) return x1;\n    x1 = z;\n    x0 = z.copy();\n    return zoom;\n  };\n\n  zoom.y = function(z) {\n    if (!arguments.length) return y1;\n    y1 = z;\n    y0 = z.copy();\n    return zoom;\n  };\n\n  function location(p) {\n    return [(p[0] - translate[0]) / scale, (p[1] - translate[1]) / scale];\n  }\n\n  function point(l) {\n    return [l[0] * scale + translate[0], l[1] * scale + translate[1]];\n  }\n\n  function scaleTo(s) {\n    scale = Math.max(scaleExtent[0], Math.min(scaleExtent[1], s));\n  }\n\n  function translateTo(p, l) {\n    l = point(l);\n    translate[0] += p[0] - l[0];\n    translate[1] += p[1] - l[1];\n  }\n\n  function dispatch(event) {\n    if (x1) x1.domain(x0.range().map(function(x) { return (x - translate[0]) / scale; }).map(x0.invert));\n    if (y1) y1.domain(y0.range().map(function(y) { return (y - translate[1]) / scale; }).map(y0.invert));\n    d3.event.preventDefault();\n    event({type: \"zoom\", scale: scale, translate: translate});\n  }\n\n  function mousedown() {\n    var target = this,\n        event_ = event.of(target, arguments),\n        eventTarget = d3.event.target,\n        moved = 0,\n        w = d3.select(window).on(\"mousemove.zoom\", mousemove).on(\"mouseup.zoom\", mouseup),\n        l = location(d3.mouse(target));\n\n    window.focus();\n    d3_eventCancel();\n\n    function mousemove() {\n      moved = 1;\n      translateTo(d3.mouse(target), l);\n      dispatch(event_);\n    }\n\n    function mouseup() {\n      if (moved) d3_eventCancel();\n      w.on(\"mousemove.zoom\", null).on(\"mouseup.zoom\", null);\n      if (moved && d3.event.target === eventTarget) w.on(\"click.zoom\", click);\n    }\n\n    function click() {\n      d3_eventCancel();\n      w.on(\"click.zoom\", null);\n    }\n  }\n\n  function mousewheel() {\n    if (!translate0) translate0 = location(d3.mouse(this));\n    scaleTo(Math.pow(2, d3_behavior_zoomDelta() * .002) * scale);\n    translateTo(d3.mouse(this), translate0);\n    dispatch(event.of(this, arguments));\n  }\n\n  function mousemove() {\n    translate0 = null;\n  }\n\n  function dblclick() {\n    var p = d3.mouse(this), l = location(p);\n    scaleTo(d3.event.shiftKey ? scale / 2 : scale * 2);\n    translateTo(p, l);\n    dispatch(event.of(this, arguments));\n  }\n\n  function touchstart() {\n    var touches = d3.touches(this),\n        now = Date.now();\n\n    scale0 = scale;\n    translate0 = {};\n    touches.forEach(function(t) { translate0[t.identifier] = location(t); });\n    d3_eventCancel();\n\n    if ((touches.length === 1) && (now - touchtime < 500)) { // dbltap\n      var p = touches[0], l = location(touches[0]);\n      scaleTo(scale * 2);\n      translateTo(p, l);\n      dispatch(event.of(this, arguments));\n    }\n    touchtime = now;\n  }\n\n  function touchmove() {\n    var touches = d3.touches(this),\n        p0 = touches[0],\n        l0 = translate0[p0.identifier];\n    if (p1 = touches[1]) {\n      var p1, l1 = translate0[p1.identifier];\n      p0 = [(p0[0] + p1[0]) / 2, (p0[1] + p1[1]) / 2];\n      l0 = [(l0[0] + l1[0]) / 2, (l0[1] + l1[1]) / 2];\n      scaleTo(d3.event.scale * scale0);\n    }\n    translateTo(p0, l0);\n    dispatch(event.of(this, arguments));\n  }\n\n  return d3.rebind(zoom, event, \"on\");\n};\n\nvar d3_behavior_zoomDiv, // for interpreting mousewheel events\n    d3_behavior_zoomInfinity = [0, Infinity]; // default scale extent\n\nfunction d3_behavior_zoomDelta() {\n\n  // mousewheel events are totally broken!\n  // https://bugs.webkit.org/show_bug.cgi?id=40441\n  // not only that, but Chrome and Safari differ in re. to acceleration!\n  if (!d3_behavior_zoomDiv) {\n    d3_behavior_zoomDiv = d3.select(\"body\").append(\"div\")\n        .style(\"visibility\", \"hidden\")\n        .style(\"top\", 0)\n        .style(\"height\", 0)\n        .style(\"width\", 0)\n        .style(\"overflow-y\", \"scroll\")\n      .append(\"div\")\n        .style(\"height\", \"2000px\")\n      .node().parentNode;\n  }\n\n  var e = d3.event, delta;\n  try {\n    d3_behavior_zoomDiv.scrollTop = 1000;\n    d3_behavior_zoomDiv.dispatchEvent(e);\n    delta = 1000 - d3_behavior_zoomDiv.scrollTop;\n  } catch (error) {\n    delta = e.wheelDelta || (-e.detail * 5);\n  }\n\n  return delta;\n}\nd3.layout = {};\n// Implements hierarchical edge bundling using Holten's algorithm. For each\n// input link, a path is computed that travels through the tree, up the parent\n// hierarchy to the least common ancestor, and then back down to the destination\n// node. Each path is simply an array of nodes.\nd3.layout.bundle = function() {\n  return function(links) {\n    var paths = [],\n        i = -1,\n        n = links.length;\n    while (++i < n) paths.push(d3_layout_bundlePath(links[i]));\n    return paths;\n  };\n};\n\nfunction d3_layout_bundlePath(link) {\n  var start = link.source,\n      end = link.target,\n      lca = d3_layout_bundleLeastCommonAncestor(start, end),\n      points = [start];\n  while (start !== lca) {\n    start = start.parent;\n    points.push(start);\n  }\n  var k = points.length;\n  while (end !== lca) {\n    points.splice(k, 0, end);\n    end = end.parent;\n  }\n  return points;\n}\n\nfunction d3_layout_bundleAncestors(node) {\n  var ancestors = [],\n      parent = node.parent;\n  while (parent != null) {\n    ancestors.push(node);\n    node = parent;\n    parent = parent.parent;\n  }\n  ancestors.push(node);\n  return ancestors;\n}\n\nfunction d3_layout_bundleLeastCommonAncestor(a, b) {\n  if (a === b) return a;\n  var aNodes = d3_layout_bundleAncestors(a),\n      bNodes = d3_layout_bundleAncestors(b),\n      aNode = aNodes.pop(),\n      bNode = bNodes.pop(),\n      sharedNode = null;\n  while (aNode === bNode) {\n    sharedNode = aNode;\n    aNode = aNodes.pop();\n    bNode = bNodes.pop();\n  }\n  return sharedNode;\n}\nd3.layout.chord = function() {\n  var chord = {},\n      chords,\n      groups,\n      matrix,\n      n,\n      padding = 0,\n      sortGroups,\n      sortSubgroups,\n      sortChords;\n\n  function relayout() {\n    var subgroups = {},\n        groupSums = [],\n        groupIndex = d3.range(n),\n        subgroupIndex = [],\n        k,\n        x,\n        x0,\n        i,\n        j;\n\n    chords = [];\n    groups = [];\n\n    // Compute the sum.\n    k = 0, i = -1; while (++i < n) {\n      x = 0, j = -1; while (++j < n) {\n        x += matrix[i][j];\n      }\n      groupSums.push(x);\n      subgroupIndex.push(d3.range(n));\n      k += x;\n    }\n\n    // Sort groups…\n    if (sortGroups) {\n      groupIndex.sort(function(a, b) {\n        return sortGroups(groupSums[a], groupSums[b]);\n      });\n    }\n\n    // Sort subgroups…\n    if (sortSubgroups) {\n      subgroupIndex.forEach(function(d, i) {\n        d.sort(function(a, b) {\n          return sortSubgroups(matrix[i][a], matrix[i][b]);\n        });\n      });\n    }\n\n    // Convert the sum to scaling factor for [0, 2pi].\n    // TODO Allow start and end angle to be specified.\n    // TODO Allow padding to be specified as percentage?\n    k = (2 * Math.PI - padding * n) / k;\n\n    // Compute the start and end angle for each group and subgroup.\n    // Note: Opera has a bug reordering object literal properties!\n    x = 0, i = -1; while (++i < n) {\n      x0 = x, j = -1; while (++j < n) {\n        var di = groupIndex[i],\n            dj = subgroupIndex[di][j],\n            v = matrix[di][dj],\n            a0 = x,\n            a1 = x += v * k;\n        subgroups[di + \"-\" + dj] = {\n          index: di,\n          subindex: dj,\n          startAngle: a0,\n          endAngle: a1,\n          value: v\n        };\n      }\n      groups.push({\n        index: di,\n        startAngle: x0,\n        endAngle: x,\n        value: (x - x0) / k\n      });\n      x += padding;\n    }\n\n    // Generate chords for each (non-empty) subgroup-subgroup link.\n    i = -1; while (++i < n) {\n      j = i - 1; while (++j < n) {\n        var source = subgroups[i + \"-\" + j],\n            target = subgroups[j + \"-\" + i];\n        if (source.value || target.value) {\n          chords.push(source.value < target.value\n              ? {source: target, target: source}\n              : {source: source, target: target});\n        }\n      }\n    }\n\n    if (sortChords) resort();\n  }\n\n  function resort() {\n    chords.sort(function(a, b) {\n      return sortChords(\n          (a.source.value + a.target.value) / 2,\n          (b.source.value + b.target.value) / 2);\n    });\n  }\n\n  chord.matrix = function(x) {\n    if (!arguments.length) return matrix;\n    n = (matrix = x) && matrix.length;\n    chords = groups = null;\n    return chord;\n  };\n\n  chord.padding = function(x) {\n    if (!arguments.length) return padding;\n    padding = x;\n    chords = groups = null;\n    return chord;\n  };\n\n  chord.sortGroups = function(x) {\n    if (!arguments.length) return sortGroups;\n    sortGroups = x;\n    chords = groups = null;\n    return chord;\n  };\n\n  chord.sortSubgroups = function(x) {\n    if (!arguments.length) return sortSubgroups;\n    sortSubgroups = x;\n    chords = null;\n    return chord;\n  };\n\n  chord.sortChords = function(x) {\n    if (!arguments.length) return sortChords;\n    sortChords = x;\n    if (chords) resort();\n    return chord;\n  };\n\n  chord.chords = function() {\n    if (!chords) relayout();\n    return chords;\n  };\n\n  chord.groups = function() {\n    if (!groups) relayout();\n    return groups;\n  };\n\n  return chord;\n};\n// A rudimentary force layout using Gauss-Seidel.\nd3.layout.force = function() {\n  var force = {},\n      event = d3.dispatch(\"start\", \"tick\", \"end\"),\n      size = [1, 1],\n      drag,\n      alpha,\n      friction = .9,\n      linkDistance = d3_layout_forceLinkDistance,\n      linkStrength = d3_layout_forceLinkStrength,\n      charge = -30,\n      gravity = .1,\n      theta = .8,\n      interval,\n      nodes = [],\n      links = [],\n      distances,\n      strengths,\n      charges;\n\n  function repulse(node) {\n    return function(quad, x1, y1, x2, y2) {\n      if (quad.point !== node) {\n        var dx = quad.cx - node.x,\n            dy = quad.cy - node.y,\n            dn = 1 / Math.sqrt(dx * dx + dy * dy);\n\n        /* Barnes-Hut criterion. */\n        if ((x2 - x1) * dn < theta) {\n          var k = quad.charge * dn * dn;\n          node.px -= dx * k;\n          node.py -= dy * k;\n          return true;\n        }\n\n        if (quad.point && isFinite(dn)) {\n          var k = quad.pointCharge * dn * dn;\n          node.px -= dx * k;\n          node.py -= dy * k;\n        }\n      }\n      return !quad.charge;\n    };\n  }\n\n  force.tick = function() {\n    // simulated annealing, basically\n    if ((alpha *= .99) < .005) {\n      event.end({type: \"end\", alpha: alpha = 0});\n      return true;\n    }\n\n    var n = nodes.length,\n        m = links.length,\n        q,\n        i, // current index\n        o, // current object\n        s, // current source\n        t, // current target\n        l, // current distance\n        k, // current force\n        x, // x-distance\n        y; // y-distance\n\n    // gauss-seidel relaxation for links\n    for (i = 0; i < m; ++i) {\n      o = links[i];\n      s = o.source;\n      t = o.target;\n      x = t.x - s.x;\n      y = t.y - s.y;\n      if (l = (x * x + y * y)) {\n        l = alpha * strengths[i] * ((l = Math.sqrt(l)) - distances[i]) / l;\n        x *= l;\n        y *= l;\n        t.x -= x * (k = s.weight / (t.weight + s.weight));\n        t.y -= y * k;\n        s.x += x * (k = 1 - k);\n        s.y += y * k;\n      }\n    }\n\n    // apply gravity forces\n    if (k = alpha * gravity) {\n      x = size[0] / 2;\n      y = size[1] / 2;\n      i = -1; if (k) while (++i < n) {\n        o = nodes[i];\n        o.x += (x - o.x) * k;\n        o.y += (y - o.y) * k;\n      }\n    }\n\n    // compute quadtree center of mass and apply charge forces\n    if (charge) {\n      d3_layout_forceAccumulate(q = d3.geom.quadtree(nodes), alpha, charges);\n      i = -1; while (++i < n) {\n        if (!(o = nodes[i]).fixed) {\n          q.visit(repulse(o));\n        }\n      }\n    }\n\n    // position verlet integration\n    i = -1; while (++i < n) {\n      o = nodes[i];\n      if (o.fixed) {\n        o.x = o.px;\n        o.y = o.py;\n      } else {\n        o.x -= (o.px - (o.px = o.x)) * friction;\n        o.y -= (o.py - (o.py = o.y)) * friction;\n      }\n    }\n\n    event.tick({type: \"tick\", alpha: alpha});\n  };\n\n  force.nodes = function(x) {\n    if (!arguments.length) return nodes;\n    nodes = x;\n    return force;\n  };\n\n  force.links = function(x) {\n    if (!arguments.length) return links;\n    links = x;\n    return force;\n  };\n\n  force.size = function(x) {\n    if (!arguments.length) return size;\n    size = x;\n    return force;\n  };\n\n  force.linkDistance = function(x) {\n    if (!arguments.length) return linkDistance;\n    linkDistance = d3.functor(x);\n    return force;\n  };\n\n  // For backwards-compatibility.\n  force.distance = force.linkDistance;\n\n  force.linkStrength = function(x) {\n    if (!arguments.length) return linkStrength;\n    linkStrength = d3.functor(x);\n    return force;\n  };\n\n  force.friction = function(x) {\n    if (!arguments.length) return friction;\n    friction = x;\n    return force;\n  };\n\n  force.charge = function(x) {\n    if (!arguments.length) return charge;\n    charge = typeof x === \"function\" ? x : +x;\n    return force;\n  };\n\n  force.gravity = function(x) {\n    if (!arguments.length) return gravity;\n    gravity = x;\n    return force;\n  };\n\n  force.theta = function(x) {\n    if (!arguments.length) return theta;\n    theta = x;\n    return force;\n  };\n\n  force.alpha = function(x) {\n    if (!arguments.length) return alpha;\n\n    if (alpha) { // if we're already running\n      if (x > 0) alpha = x; // we might keep it hot\n      else alpha = 0; // or, next tick will dispatch \"end\"\n    } else if (x > 0) { // otherwise, fire it up!\n      event.start({type: \"start\", alpha: alpha = x});\n      d3.timer(force.tick);\n    }\n\n    return force;\n  };\n\n  force.start = function() {\n    var i,\n        j,\n        n = nodes.length,\n        m = links.length,\n        w = size[0],\n        h = size[1],\n        neighbors,\n        o;\n\n    for (i = 0; i < n; ++i) {\n      (o = nodes[i]).index = i;\n      o.weight = 0;\n    }\n\n    distances = [];\n    strengths = [];\n    for (i = 0; i < m; ++i) {\n      o = links[i];\n      if (typeof o.source == \"number\") o.source = nodes[o.source];\n      if (typeof o.target == \"number\") o.target = nodes[o.target];\n      distances[i] = linkDistance.call(this, o, i);\n      strengths[i] = linkStrength.call(this, o, i);\n      ++o.source.weight;\n      ++o.target.weight;\n    }\n\n    for (i = 0; i < n; ++i) {\n      o = nodes[i];\n      if (isNaN(o.x)) o.x = position(\"x\", w);\n      if (isNaN(o.y)) o.y = position(\"y\", h);\n      if (isNaN(o.px)) o.px = o.x;\n      if (isNaN(o.py)) o.py = o.y;\n    }\n\n    charges = [];\n    if (typeof charge === \"function\") {\n      for (i = 0; i < n; ++i) {\n        charges[i] = +charge.call(this, nodes[i], i);\n      }\n    } else {\n      for (i = 0; i < n; ++i) {\n        charges[i] = charge;\n      }\n    }\n\n    // initialize node position based on first neighbor\n    function position(dimension, size) {\n      var neighbors = neighbor(i),\n          j = -1,\n          m = neighbors.length,\n          x;\n      while (++j < m) if (!isNaN(x = neighbors[j][dimension])) return x;\n      return Math.random() * size;\n    }\n\n    // initialize neighbors lazily\n    function neighbor() {\n      if (!neighbors) {\n        neighbors = [];\n        for (j = 0; j < n; ++j) {\n          neighbors[j] = [];\n        }\n        for (j = 0; j < m; ++j) {\n          var o = links[j];\n          neighbors[o.source.index].push(o.target);\n          neighbors[o.target.index].push(o.source);\n        }\n      }\n      return neighbors[i];\n    }\n\n    return force.resume();\n  };\n\n  force.resume = function() {\n    return force.alpha(.1);\n  };\n\n  force.stop = function() {\n    return force.alpha(0);\n  };\n\n  // use `node.call(force.drag)` to make nodes draggable\n  force.drag = function() {\n    if (!drag) drag = d3.behavior.drag()\n        .origin(Object)\n        .on(\"dragstart\", dragstart)\n        .on(\"drag\", d3_layout_forceDrag)\n        .on(\"dragend\", d3_layout_forceDragEnd);\n\n    this.on(\"mouseover.force\", d3_layout_forceDragOver)\n        .on(\"mouseout.force\", d3_layout_forceDragOut)\n        .call(drag);\n  };\n\n  function dragstart(d) {\n    d3_layout_forceDragOver(d3_layout_forceDragNode = d);\n    d3_layout_forceDragForce = force;\n  }\n\n  return d3.rebind(force, event, \"on\");\n};\n\nvar d3_layout_forceDragForce,\n    d3_layout_forceDragNode;\n\nfunction d3_layout_forceDragOver(d) {\n  d.fixed |= 2;\n}\n\nfunction d3_layout_forceDragOut(d) {\n  if (d !== d3_layout_forceDragNode) d.fixed &= 1;\n}\n\nfunction d3_layout_forceDragEnd() {\n  d3_layout_forceDragNode.fixed &= 1;\n  d3_layout_forceDragForce = d3_layout_forceDragNode = null;\n}\n\nfunction d3_layout_forceDrag() {\n  d3_layout_forceDragNode.px = d3.event.x;\n  d3_layout_forceDragNode.py = d3.event.y;\n  d3_layout_forceDragForce.resume(); // restart annealing\n}\n\nfunction d3_layout_forceAccumulate(quad, alpha, charges) {\n  var cx = 0,\n      cy = 0;\n  quad.charge = 0;\n  if (!quad.leaf) {\n    var nodes = quad.nodes,\n        n = nodes.length,\n        i = -1,\n        c;\n    while (++i < n) {\n      c = nodes[i];\n      if (c == null) continue;\n      d3_layout_forceAccumulate(c, alpha, charges);\n      quad.charge += c.charge;\n      cx += c.charge * c.cx;\n      cy += c.charge * c.cy;\n    }\n  }\n  if (quad.point) {\n    // jitter internal nodes that are coincident\n    if (!quad.leaf) {\n      quad.point.x += Math.random() - .5;\n      quad.point.y += Math.random() - .5;\n    }\n    var k = alpha * charges[quad.point.index];\n    quad.charge += quad.pointCharge = k;\n    cx += k * quad.point.x;\n    cy += k * quad.point.y;\n  }\n  quad.cx = cx / quad.charge;\n  quad.cy = cy / quad.charge;\n}\n\nfunction d3_layout_forceLinkDistance(link) {\n  return 20;\n}\n\nfunction d3_layout_forceLinkStrength(link) {\n  return 1;\n}\nd3.layout.partition = function() {\n  var hierarchy = d3.layout.hierarchy(),\n      size = [1, 1]; // width, height\n\n  function position(node, x, dx, dy) {\n    var children = node.children;\n    node.x = x;\n    node.y = node.depth * dy;\n    node.dx = dx;\n    node.dy = dy;\n    if (children && (n = children.length)) {\n      var i = -1,\n          n,\n          c,\n          d;\n      dx = node.value ? dx / node.value : 0;\n      while (++i < n) {\n        position(c = children[i], x, d = c.value * dx, dy);\n        x += d;\n      }\n    }\n  }\n\n  function depth(node) {\n    var children = node.children,\n        d = 0;\n    if (children && (n = children.length)) {\n      var i = -1,\n          n;\n      while (++i < n) d = Math.max(d, depth(children[i]));\n    }\n    return 1 + d;\n  }\n\n  function partition(d, i) {\n    var nodes = hierarchy.call(this, d, i);\n    position(nodes[0], 0, size[0], size[1] / depth(nodes[0]));\n    return nodes;\n  }\n\n  partition.size = function(x) {\n    if (!arguments.length) return size;\n    size = x;\n    return partition;\n  };\n\n  return d3_layout_hierarchyRebind(partition, hierarchy);\n};\nd3.layout.pie = function() {\n  var value = Number,\n      sort = d3_layout_pieSortByValue,\n      startAngle = 0,\n      endAngle = 2 * Math.PI;\n\n  function pie(data, i) {\n\n    // Compute the numeric values for each data element.\n    var values = data.map(function(d, i) { return +value.call(pie, d, i); });\n\n    // Compute the start angle.\n    var a = +(typeof startAngle === \"function\"\n        ? startAngle.apply(this, arguments)\n        : startAngle);\n\n    // Compute the angular scale factor: from value to radians.\n    var k = ((typeof endAngle === \"function\"\n        ? endAngle.apply(this, arguments)\n        : endAngle) - startAngle)\n        / d3.sum(values);\n\n    // Optionally sort the data.\n    var index = d3.range(data.length);\n    if (sort != null) index.sort(sort === d3_layout_pieSortByValue\n        ? function(i, j) { return values[j] - values[i]; }\n        : function(i, j) { return sort(data[i], data[j]); });\n\n    // Compute the arcs!\n    // They are stored in the original data's order.\n    var arcs = [];\n    index.forEach(function(i) {\n      arcs[i] = {\n        data: data[i],\n        value: d = values[i],\n        startAngle: a,\n        endAngle: a += d * k\n      };\n    });\n    return arcs;\n  }\n\n  /**\n   * Specifies the value function *x*, which returns a nonnegative numeric value\n   * for each datum. The default value function is `Number`. The value function\n   * is passed two arguments: the current datum and the current index.\n   */\n  pie.value = function(x) {\n    if (!arguments.length) return value;\n    value = x;\n    return pie;\n  };\n\n  /**\n   * Specifies a sort comparison operator *x*. The comparator is passed two data\n   * elements from the data array, a and b; it returns a negative value if a is\n   * less than b, a positive value if a is greater than b, and zero if a equals\n   * b.\n   */\n  pie.sort = function(x) {\n    if (!arguments.length) return sort;\n    sort = x;\n    return pie;\n  };\n\n  /**\n   * Specifies the overall start angle of the pie chart. Defaults to 0. The\n   * start angle can be specified either as a constant or as a function; in the\n   * case of a function, it is evaluated once per array (as opposed to per\n   * element).\n   */\n  pie.startAngle = function(x) {\n    if (!arguments.length) return startAngle;\n    startAngle = x;\n    return pie;\n  };\n\n  /**\n   * Specifies the overall end angle of the pie chart. Defaults to 2π. The\n   * end angle can be specified either as a constant or as a function; in the\n   * case of a function, it is evaluated once per array (as opposed to per\n   * element).\n   */\n  pie.endAngle = function(x) {\n    if (!arguments.length) return endAngle;\n    endAngle = x;\n    return pie;\n  };\n\n  return pie;\n};\n\nvar d3_layout_pieSortByValue = {};\n// data is two-dimensional array of x,y; we populate y0\nd3.layout.stack = function() {\n  var values = Object,\n      order = d3_layout_stackOrderDefault,\n      offset = d3_layout_stackOffsetZero,\n      out = d3_layout_stackOut,\n      x = d3_layout_stackX,\n      y = d3_layout_stackY;\n\n  function stack(data, index) {\n\n    // Convert series to canonical two-dimensional representation.\n    var series = data.map(function(d, i) {\n      return values.call(stack, d, i);\n    });\n\n    // Convert each series to canonical [[x,y]] representation.\n    var points = series.map(function(d, i) {\n      return d.map(function(v, i) {\n        return [x.call(stack, v, i), y.call(stack, v, i)];\n      });\n    });\n\n    // Compute the order of series, and permute them.\n    var orders = order.call(stack, points, index);\n    series = d3.permute(series, orders);\n    points = d3.permute(points, orders);\n\n    // Compute the baseline…\n    var offsets = offset.call(stack, points, index);\n\n    // And propagate it to other series.\n    var n = series.length,\n        m = series[0].length,\n        i,\n        j,\n        o;\n    for (j = 0; j < m; ++j) {\n      out.call(stack, series[0][j], o = offsets[j], points[0][j][1]);\n      for (i = 1; i < n; ++i) {\n        out.call(stack, series[i][j], o += points[i - 1][j][1], points[i][j][1]);\n      }\n    }\n\n    return data;\n  }\n\n  stack.values = function(x) {\n    if (!arguments.length) return values;\n    values = x;\n    return stack;\n  };\n\n  stack.order = function(x) {\n    if (!arguments.length) return order;\n    order = typeof x === \"function\" ? x : d3_layout_stackOrders.get(x) || d3_layout_stackOrderDefault;\n    return stack;\n  };\n\n  stack.offset = function(x) {\n    if (!arguments.length) return offset;\n    offset = typeof x === \"function\" ? x : d3_layout_stackOffsets.get(x) || d3_layout_stackOffsetZero;\n    return stack;\n  };\n\n  stack.x = function(z) {\n    if (!arguments.length) return x;\n    x = z;\n    return stack;\n  };\n\n  stack.y = function(z) {\n    if (!arguments.length) return y;\n    y = z;\n    return stack;\n  };\n\n  stack.out = function(z) {\n    if (!arguments.length) return out;\n    out = z;\n    return stack;\n  };\n\n  return stack;\n}\n\nfunction d3_layout_stackX(d) {\n  return d.x;\n}\n\nfunction d3_layout_stackY(d) {\n  return d.y;\n}\n\nfunction d3_layout_stackOut(d, y0, y) {\n  d.y0 = y0;\n  d.y = y;\n}\n\nvar d3_layout_stackOrders = d3.map({\n\n  \"inside-out\": function(data) {\n    var n = data.length,\n        i,\n        j,\n        max = data.map(d3_layout_stackMaxIndex),\n        sums = data.map(d3_layout_stackReduceSum),\n        index = d3.range(n).sort(function(a, b) { return max[a] - max[b]; }),\n        top = 0,\n        bottom = 0,\n        tops = [],\n        bottoms = [];\n    for (i = 0; i < n; ++i) {\n      j = index[i];\n      if (top < bottom) {\n        top += sums[j];\n        tops.push(j);\n      } else {\n        bottom += sums[j];\n        bottoms.push(j);\n      }\n    }\n    return bottoms.reverse().concat(tops);\n  },\n\n  \"reverse\": function(data) {\n    return d3.range(data.length).reverse();\n  },\n\n  \"default\": d3_layout_stackOrderDefault\n\n});\n\nvar d3_layout_stackOffsets = d3.map({\n\n  \"silhouette\": function(data) {\n    var n = data.length,\n        m = data[0].length,\n        sums = [],\n        max = 0,\n        i,\n        j,\n        o,\n        y0 = [];\n    for (j = 0; j < m; ++j) {\n      for (i = 0, o = 0; i < n; i++) o += data[i][j][1];\n      if (o > max) max = o;\n      sums.push(o);\n    }\n    for (j = 0; j < m; ++j) {\n      y0[j] = (max - sums[j]) / 2;\n    }\n    return y0;\n  },\n\n  \"wiggle\": function(data) {\n    var n = data.length,\n        x = data[0],\n        m = x.length,\n        max = 0,\n        i,\n        j,\n        k,\n        s1,\n        s2,\n        s3,\n        dx,\n        o,\n        o0,\n        y0 = [];\n    y0[0] = o = o0 = 0;\n    for (j = 1; j < m; ++j) {\n      for (i = 0, s1 = 0; i < n; ++i) s1 += data[i][j][1];\n      for (i = 0, s2 = 0, dx = x[j][0] - x[j - 1][0]; i < n; ++i) {\n        for (k = 0, s3 = (data[i][j][1] - data[i][j - 1][1]) / (2 * dx); k < i; ++k) {\n          s3 += (data[k][j][1] - data[k][j - 1][1]) / dx;\n        }\n        s2 += s3 * data[i][j][1];\n      }\n      y0[j] = o -= s1 ? s2 / s1 * dx : 0;\n      if (o < o0) o0 = o;\n    }\n    for (j = 0; j < m; ++j) y0[j] -= o0;\n    return y0;\n  },\n\n  \"expand\": function(data) {\n    var n = data.length,\n        m = data[0].length,\n        k = 1 / n,\n        i,\n        j,\n        o,\n        y0 = [];\n    for (j = 0; j < m; ++j) {\n      for (i = 0, o = 0; i < n; i++) o += data[i][j][1];\n      if (o) for (i = 0; i < n; i++) data[i][j][1] /= o;\n      else for (i = 0; i < n; i++) data[i][j][1] = k;\n    }\n    for (j = 0; j < m; ++j) y0[j] = 0;\n    return y0;\n  },\n\n  \"zero\": d3_layout_stackOffsetZero\n\n});\n\nfunction d3_layout_stackOrderDefault(data) {\n  return d3.range(data.length);\n}\n\nfunction d3_layout_stackOffsetZero(data) {\n  var j = -1,\n      m = data[0].length,\n      y0 = [];\n  while (++j < m) y0[j] = 0;\n  return y0;\n}\n\nfunction d3_layout_stackMaxIndex(array) {\n  var i = 1,\n      j = 0,\n      v = array[0][1],\n      k,\n      n = array.length;\n  for (; i < n; ++i) {\n    if ((k = array[i][1]) > v) {\n      j = i;\n      v = k;\n    }\n  }\n  return j;\n}\n\nfunction d3_layout_stackReduceSum(d) {\n  return d.reduce(d3_layout_stackSum, 0);\n}\n\nfunction d3_layout_stackSum(p, d) {\n  return p + d[1];\n}\nd3.layout.histogram = function() {\n  var frequency = true,\n      valuer = Number,\n      ranger = d3_layout_histogramRange,\n      binner = d3_layout_histogramBinSturges;\n\n  function histogram(data, i) {\n    var bins = [],\n        values = data.map(valuer, this),\n        range = ranger.call(this, values, i),\n        thresholds = binner.call(this, range, values, i),\n        bin,\n        i = -1,\n        n = values.length,\n        m = thresholds.length - 1,\n        k = frequency ? 1 : 1 / n,\n        x;\n\n    // Initialize the bins.\n    while (++i < m) {\n      bin = bins[i] = [];\n      bin.dx = thresholds[i + 1] - (bin.x = thresholds[i]);\n      bin.y = 0;\n    }\n\n    // Fill the bins, ignoring values outside the range.\n    i = -1; while(++i < n) {\n      x = values[i];\n      if ((x >= range[0]) && (x <= range[1])) {\n        bin = bins[d3.bisect(thresholds, x, 1, m) - 1];\n        bin.y += k;\n        bin.push(data[i]);\n      }\n    }\n\n    return bins;\n  }\n\n  // Specifies how to extract a value from the associated data. The default\n  // value function is `Number`, which is equivalent to the identity function.\n  histogram.value = function(x) {\n    if (!arguments.length) return valuer;\n    valuer = x;\n    return histogram;\n  };\n\n  // Specifies the range of the histogram. Values outside the specified range\n  // will be ignored. The argument `x` may be specified either as a two-element\n  // array representing the minimum and maximum value of the range, or as a\n  // function that returns the range given the array of values and the current\n  // index `i`. The default range is the extent (minimum and maximum) of the\n  // values.\n  histogram.range = function(x) {\n    if (!arguments.length) return ranger;\n    ranger = d3.functor(x);\n    return histogram;\n  };\n\n  // Specifies how to bin values in the histogram. The argument `x` may be\n  // specified as a number, in which case the range of values will be split\n  // uniformly into the given number of bins. Or, `x` may be an array of\n  // threshold values, defining the bins; the specified array must contain the\n  // rightmost (upper) value, thus specifying n + 1 values for n bins. Or, `x`\n  // may be a function which is evaluated, being passed the range, the array of\n  // values, and the current index `i`, returning an array of thresholds. The\n  // default bin function will divide the values into uniform bins using\n  // Sturges' formula.\n  histogram.bins = function(x) {\n    if (!arguments.length) return binner;\n    binner = typeof x === \"number\"\n        ? function(range) { return d3_layout_histogramBinFixed(range, x); }\n        : d3.functor(x);\n    return histogram;\n  };\n\n  // Specifies whether the histogram's `y` value is a count (frequency) or a\n  // probability (density). The default value is true.\n  histogram.frequency = function(x) {\n    if (!arguments.length) return frequency;\n    frequency = !!x;\n    return histogram;\n  };\n\n  return histogram;\n};\n\nfunction d3_layout_histogramBinSturges(range, values) {\n  return d3_layout_histogramBinFixed(range, Math.ceil(Math.log(values.length) / Math.LN2 + 1));\n}\n\nfunction d3_layout_histogramBinFixed(range, n) {\n  var x = -1,\n      b = +range[0],\n      m = (range[1] - b) / n,\n      f = [];\n  while (++x <= n) f[x] = m * x + b;\n  return f;\n}\n\nfunction d3_layout_histogramRange(values) {\n  return [d3.min(values), d3.max(values)];\n}\nd3.layout.hierarchy = function() {\n  var sort = d3_layout_hierarchySort,\n      children = d3_layout_hierarchyChildren,\n      value = d3_layout_hierarchyValue;\n\n  // Recursively compute the node depth and value.\n  // Also converts the data representation into a standard hierarchy structure.\n  function recurse(data, depth, nodes) {\n    var childs = children.call(hierarchy, data, depth),\n        node = d3_layout_hierarchyInline ? data : {data: data};\n    node.depth = depth;\n    nodes.push(node);\n    if (childs && (n = childs.length)) {\n      var i = -1,\n          n,\n          c = node.children = [],\n          v = 0,\n          j = depth + 1;\n      while (++i < n) {\n        d = recurse(childs[i], j, nodes);\n        d.parent = node;\n        c.push(d);\n        v += d.value;\n      }\n      if (sort) c.sort(sort);\n      if (value) node.value = v;\n    } else if (value) {\n      node.value = +value.call(hierarchy, data, depth) || 0;\n    }\n    return node;\n  }\n\n  // Recursively re-evaluates the node value.\n  function revalue(node, depth) {\n    var children = node.children,\n        v = 0;\n    if (children && (n = children.length)) {\n      var i = -1,\n          n,\n          j = depth + 1;\n      while (++i < n) v += revalue(children[i], j);\n    } else if (value) {\n      v = +value.call(hierarchy, d3_layout_hierarchyInline ? node : node.data, depth) || 0;\n    }\n    if (value) node.value = v;\n    return v;\n  }\n\n  function hierarchy(d) {\n    var nodes = [];\n    recurse(d, 0, nodes);\n    return nodes;\n  }\n\n  hierarchy.sort = function(x) {\n    if (!arguments.length) return sort;\n    sort = x;\n    return hierarchy;\n  };\n\n  hierarchy.children = function(x) {\n    if (!arguments.length) return children;\n    children = x;\n    return hierarchy;\n  };\n\n  hierarchy.value = function(x) {\n    if (!arguments.length) return value;\n    value = x;\n    return hierarchy;\n  };\n\n  // Re-evaluates the `value` property for the specified hierarchy.\n  hierarchy.revalue = function(root) {\n    revalue(root, 0);\n    return root;\n  };\n\n  return hierarchy;\n};\n\n// A method assignment helper for hierarchy subclasses.\nfunction d3_layout_hierarchyRebind(object, hierarchy) {\n  d3.rebind(object, hierarchy, \"sort\", \"children\", \"value\");\n\n  // Add an alias for links, for convenience.\n  object.links = d3_layout_hierarchyLinks;\n\n  // If the new API is used, enabling inlining.\n  object.nodes = function(d) {\n    d3_layout_hierarchyInline = true;\n    return (object.nodes = object)(d);\n  };\n\n  return object;\n}\n\nfunction d3_layout_hierarchyChildren(d) {\n  return d.children;\n}\n\nfunction d3_layout_hierarchyValue(d) {\n  return d.value;\n}\n\nfunction d3_layout_hierarchySort(a, b) {\n  return b.value - a.value;\n}\n\n// Returns an array source+target objects for the specified nodes.\nfunction d3_layout_hierarchyLinks(nodes) {\n  return d3.merge(nodes.map(function(parent) {\n    return (parent.children || []).map(function(child) {\n      return {source: parent, target: child};\n    });\n  }));\n}\n\n// For backwards-compatibility, don't enable inlining by default.\nvar d3_layout_hierarchyInline = false;\nd3.layout.pack = function() {\n  var hierarchy = d3.layout.hierarchy().sort(d3_layout_packSort),\n      size = [1, 1];\n\n  function pack(d, i) {\n    var nodes = hierarchy.call(this, d, i),\n        root = nodes[0];\n\n    // Recursively compute the layout.\n    root.x = 0;\n    root.y = 0;\n    d3_layout_packTree(root);\n\n    // Scale the layout to fit the requested size.\n    var w = size[0],\n        h = size[1],\n        k = 1 / Math.max(2 * root.r / w, 2 * root.r / h);\n    d3_layout_packTransform(root, w / 2, h / 2, k);\n\n    return nodes;\n  }\n\n  pack.size = function(x) {\n    if (!arguments.length) return size;\n    size = x;\n    return pack;\n  };\n\n  return d3_layout_hierarchyRebind(pack, hierarchy);\n};\n\nfunction d3_layout_packSort(a, b) {\n  return a.value - b.value;\n}\n\nfunction d3_layout_packInsert(a, b) {\n  var c = a._pack_next;\n  a._pack_next = b;\n  b._pack_prev = a;\n  b._pack_next = c;\n  c._pack_prev = b;\n}\n\nfunction d3_layout_packSplice(a, b) {\n  a._pack_next = b;\n  b._pack_prev = a;\n}\n\nfunction d3_layout_packIntersects(a, b) {\n  var dx = b.x - a.x,\n      dy = b.y - a.y,\n      dr = a.r + b.r;\n  return dr * dr - dx * dx - dy * dy > .001; // within epsilon\n}\n\nfunction d3_layout_packCircle(nodes) {\n  var xMin = Infinity,\n      xMax = -Infinity,\n      yMin = Infinity,\n      yMax = -Infinity,\n      n = nodes.length,\n      a, b, c, j, k;\n\n  function bound(node) {\n    xMin = Math.min(node.x - node.r, xMin);\n    xMax = Math.max(node.x + node.r, xMax);\n    yMin = Math.min(node.y - node.r, yMin);\n    yMax = Math.max(node.y + node.r, yMax);\n  }\n\n  // Create node links.\n  nodes.forEach(d3_layout_packLink);\n\n  // Create first node.\n  a = nodes[0];\n  a.x = -a.r;\n  a.y = 0;\n  bound(a);\n\n  // Create second node.\n  if (n > 1) {\n    b = nodes[1];\n    b.x = b.r;\n    b.y = 0;\n    bound(b);\n\n    // Create third node and build chain.\n    if (n > 2) {\n      c = nodes[2];\n      d3_layout_packPlace(a, b, c);\n      bound(c);\n      d3_layout_packInsert(a, c);\n      a._pack_prev = c;\n      d3_layout_packInsert(c, b);\n      b = a._pack_next;\n\n      // Now iterate through the rest.\n      for (var i = 3; i < n; i++) {\n        d3_layout_packPlace(a, b, c = nodes[i]);\n\n        // Search for the closest intersection.\n        var isect = 0, s1 = 1, s2 = 1;\n        for (j = b._pack_next; j !== b; j = j._pack_next, s1++) {\n          if (d3_layout_packIntersects(j, c)) {\n            isect = 1;\n            break;\n          }\n        }\n        if (isect == 1) {\n          for (k = a._pack_prev; k !== j._pack_prev; k = k._pack_prev, s2++) {\n            if (d3_layout_packIntersects(k, c)) {\n              break;\n            }\n          }\n        }\n\n        // Update node chain.\n        if (isect) {\n          if (s1 < s2 || (s1 == s2 && b.r < a.r)) d3_layout_packSplice(a, b = j);\n          else d3_layout_packSplice(a = k, b);\n          i--;\n        } else {\n          d3_layout_packInsert(a, c);\n          b = c;\n          bound(c);\n        }\n      }\n    }\n  }\n\n  // Re-center the circles and return the encompassing radius.\n  var cx = (xMin + xMax) / 2,\n      cy = (yMin + yMax) / 2,\n      cr = 0;\n  for (var i = 0; i < n; i++) {\n    var node = nodes[i];\n    node.x -= cx;\n    node.y -= cy;\n    cr = Math.max(cr, node.r + Math.sqrt(node.x * node.x + node.y * node.y));\n  }\n\n  // Remove node links.\n  nodes.forEach(d3_layout_packUnlink);\n\n  return cr;\n}\n\nfunction d3_layout_packLink(node) {\n  node._pack_next = node._pack_prev = node;\n}\n\nfunction d3_layout_packUnlink(node) {\n  delete node._pack_next;\n  delete node._pack_prev;\n}\n\nfunction d3_layout_packTree(node) {\n  var children = node.children;\n  if (children && children.length) {\n    children.forEach(d3_layout_packTree);\n    node.r = d3_layout_packCircle(children);\n  } else {\n    node.r = Math.sqrt(node.value);\n  }\n}\n\nfunction d3_layout_packTransform(node, x, y, k) {\n  var children = node.children;\n  node.x = (x += k * node.x);\n  node.y = (y += k * node.y);\n  node.r *= k;\n  if (children) {\n    var i = -1, n = children.length;\n    while (++i < n) d3_layout_packTransform(children[i], x, y, k);\n  }\n}\n\nfunction d3_layout_packPlace(a, b, c) {\n  var db = a.r + c.r,\n      dx = b.x - a.x,\n      dy = b.y - a.y;\n  if (db && (dx || dy)) {\n    var da = b.r + c.r,\n        dc = Math.sqrt(dx * dx + dy * dy),\n        cos = Math.max(-1, Math.min(1, (db * db + dc * dc - da * da) / (2 * db * dc))),\n        theta = Math.acos(cos),\n        x = cos * (db /= dc),\n        y = Math.sin(theta) * db;\n    c.x = a.x + x * dx + y * dy;\n    c.y = a.y + x * dy - y * dx;\n  } else {\n    c.x = a.x + db;\n    c.y = a.y;\n  }\n}\n// Implements a hierarchical layout using the cluster (or dendrogram)\n// algorithm.\nd3.layout.cluster = function() {\n  var hierarchy = d3.layout.hierarchy().sort(null).value(null),\n      separation = d3_layout_treeSeparation,\n      size = [1, 1]; // width, height\n\n  function cluster(d, i) {\n    var nodes = hierarchy.call(this, d, i),\n        root = nodes[0],\n        previousNode,\n        x = 0,\n        kx,\n        ky;\n\n    // First walk, computing the initial x & y values.\n    d3_layout_treeVisitAfter(root, function(node) {\n      var children = node.children;\n      if (children && children.length) {\n        node.x = d3_layout_clusterX(children);\n        node.y = d3_layout_clusterY(children);\n      } else {\n        node.x = previousNode ? x += separation(node, previousNode) : 0;\n        node.y = 0;\n        previousNode = node;\n      }\n    });\n\n    // Compute the left-most, right-most, and depth-most nodes for extents.\n    var left = d3_layout_clusterLeft(root),\n        right = d3_layout_clusterRight(root),\n        x0 = left.x - separation(left, right) / 2,\n        x1 = right.x + separation(right, left) / 2;\n\n    // Second walk, normalizing x & y to the desired size.\n    d3_layout_treeVisitAfter(root, function(node) {\n      node.x = (node.x - x0) / (x1 - x0) * size[0];\n      node.y = (1 - (root.y ? node.y / root.y : 1)) * size[1];\n    });\n\n    return nodes;\n  }\n\n  cluster.separation = function(x) {\n    if (!arguments.length) return separation;\n    separation = x;\n    return cluster;\n  };\n\n  cluster.size = function(x) {\n    if (!arguments.length) return size;\n    size = x;\n    return cluster;\n  };\n\n  return d3_layout_hierarchyRebind(cluster, hierarchy);\n};\n\nfunction d3_layout_clusterY(children) {\n  return 1 + d3.max(children, function(child) {\n    return child.y;\n  });\n}\n\nfunction d3_layout_clusterX(children) {\n  return children.reduce(function(x, child) {\n    return x + child.x;\n  }, 0) / children.length;\n}\n\nfunction d3_layout_clusterLeft(node) {\n  var children = node.children;\n  return children && children.length ? d3_layout_clusterLeft(children[0]) : node;\n}\n\nfunction d3_layout_clusterRight(node) {\n  var children = node.children, n;\n  return children && (n = children.length) ? d3_layout_clusterRight(children[n - 1]) : node;\n}\n// Node-link tree diagram using the Reingold-Tilford \"tidy\" algorithm\nd3.layout.tree = function() {\n  var hierarchy = d3.layout.hierarchy().sort(null).value(null),\n      separation = d3_layout_treeSeparation,\n      size = [1, 1]; // width, height\n\n  function tree(d, i) {\n    var nodes = hierarchy.call(this, d, i),\n        root = nodes[0];\n\n    function firstWalk(node, previousSibling) {\n      var children = node.children,\n          layout = node._tree;\n      if (children && (n = children.length)) {\n        var n,\n            firstChild = children[0],\n            previousChild,\n            ancestor = firstChild,\n            child,\n            i = -1;\n        while (++i < n) {\n          child = children[i];\n          firstWalk(child, previousChild);\n          ancestor = apportion(child, previousChild, ancestor);\n          previousChild = child;\n        }\n        d3_layout_treeShift(node);\n        var midpoint = .5 * (firstChild._tree.prelim + child._tree.prelim);\n        if (previousSibling) {\n          layout.prelim = previousSibling._tree.prelim + separation(node, previousSibling);\n          layout.mod = layout.prelim - midpoint;\n        } else {\n          layout.prelim = midpoint;\n        }\n      } else {\n        if (previousSibling) {\n          layout.prelim = previousSibling._tree.prelim + separation(node, previousSibling);\n        }\n      }\n    }\n\n    function secondWalk(node, x) {\n      node.x = node._tree.prelim + x;\n      var children = node.children;\n      if (children && (n = children.length)) {\n        var i = -1,\n            n;\n        x += node._tree.mod;\n        while (++i < n) {\n          secondWalk(children[i], x);\n        }\n      }\n    }\n\n    function apportion(node, previousSibling, ancestor) {\n      if (previousSibling) {\n        var vip = node,\n            vop = node,\n            vim = previousSibling,\n            vom = node.parent.children[0],\n            sip = vip._tree.mod,\n            sop = vop._tree.mod,\n            sim = vim._tree.mod,\n            som = vom._tree.mod,\n            shift;\n        while (vim = d3_layout_treeRight(vim), vip = d3_layout_treeLeft(vip), vim && vip) {\n          vom = d3_layout_treeLeft(vom);\n          vop = d3_layout_treeRight(vop);\n          vop._tree.ancestor = node;\n          shift = vim._tree.prelim + sim - vip._tree.prelim - sip + separation(vim, vip);\n          if (shift > 0) {\n            d3_layout_treeMove(d3_layout_treeAncestor(vim, node, ancestor), node, shift);\n            sip += shift;\n            sop += shift;\n          }\n          sim += vim._tree.mod;\n          sip += vip._tree.mod;\n          som += vom._tree.mod;\n          sop += vop._tree.mod;\n        }\n        if (vim && !d3_layout_treeRight(vop)) {\n          vop._tree.thread = vim;\n          vop._tree.mod += sim - sop;\n        }\n        if (vip && !d3_layout_treeLeft(vom)) {\n          vom._tree.thread = vip;\n          vom._tree.mod += sip - som;\n          ancestor = node;\n        }\n      }\n      return ancestor;\n    }\n\n    // Initialize temporary layout variables.\n    d3_layout_treeVisitAfter(root, function(node, previousSibling) {\n      node._tree = {\n        ancestor: node,\n        prelim: 0,\n        mod: 0,\n        change: 0,\n        shift: 0,\n        number: previousSibling ? previousSibling._tree.number + 1 : 0\n      };\n    });\n\n    // Compute the layout using Buchheim et al.'s algorithm.\n    firstWalk(root);\n    secondWalk(root, -root._tree.prelim);\n\n    // Compute the left-most, right-most, and depth-most nodes for extents.\n    var left = d3_layout_treeSearch(root, d3_layout_treeLeftmost),\n        right = d3_layout_treeSearch(root, d3_layout_treeRightmost),\n        deep = d3_layout_treeSearch(root, d3_layout_treeDeepest),\n        x0 = left.x - separation(left, right) / 2,\n        x1 = right.x + separation(right, left) / 2,\n        y1 = deep.depth || 1;\n\n    // Clear temporary layout variables; transform x and y.\n    d3_layout_treeVisitAfter(root, function(node) {\n      node.x = (node.x - x0) / (x1 - x0) * size[0];\n      node.y = node.depth / y1 * size[1];\n      delete node._tree;\n    });\n\n    return nodes;\n  }\n\n  tree.separation = function(x) {\n    if (!arguments.length) return separation;\n    separation = x;\n    return tree;\n  };\n\n  tree.size = function(x) {\n    if (!arguments.length) return size;\n    size = x;\n    return tree;\n  };\n\n  return d3_layout_hierarchyRebind(tree, hierarchy);\n};\n\nfunction d3_layout_treeSeparation(a, b) {\n  return a.parent == b.parent ? 1 : 2;\n}\n\n// function d3_layout_treeSeparationRadial(a, b) {\n//   return (a.parent == b.parent ? 1 : 2) / a.depth;\n// }\n\nfunction d3_layout_treeLeft(node) {\n  var children = node.children;\n  return children && children.length ? children[0] : node._tree.thread;\n}\n\nfunction d3_layout_treeRight(node) {\n  var children = node.children,\n      n;\n  return children && (n = children.length) ? children[n - 1] : node._tree.thread;\n}\n\nfunction d3_layout_treeSearch(node, compare) {\n  var children = node.children;\n  if (children && (n = children.length)) {\n    var child,\n        n,\n        i = -1;\n    while (++i < n) {\n      if (compare(child = d3_layout_treeSearch(children[i], compare), node) > 0) {\n        node = child;\n      }\n    }\n  }\n  return node;\n}\n\nfunction d3_layout_treeRightmost(a, b) {\n  return a.x - b.x;\n}\n\nfunction d3_layout_treeLeftmost(a, b) {\n  return b.x - a.x;\n}\n\nfunction d3_layout_treeDeepest(a, b) {\n  return a.depth - b.depth;\n}\n\nfunction d3_layout_treeVisitAfter(node, callback) {\n  function visit(node, previousSibling) {\n    var children = node.children;\n    if (children && (n = children.length)) {\n      var child,\n          previousChild = null,\n          i = -1,\n          n;\n      while (++i < n) {\n        child = children[i];\n        visit(child, previousChild);\n        previousChild = child;\n      }\n    }\n    callback(node, previousSibling);\n  }\n  visit(node, null);\n}\n\nfunction d3_layout_treeShift(node) {\n  var shift = 0,\n      change = 0,\n      children = node.children,\n      i = children.length,\n      child;\n  while (--i >= 0) {\n    child = children[i]._tree;\n    child.prelim += shift;\n    child.mod += shift;\n    shift += child.shift + (change += child.change);\n  }\n}\n\nfunction d3_layout_treeMove(ancestor, node, shift) {\n  ancestor = ancestor._tree;\n  node = node._tree;\n  var change = shift / (node.number - ancestor.number);\n  ancestor.change += change;\n  node.change -= change;\n  node.shift += shift;\n  node.prelim += shift;\n  node.mod += shift;\n}\n\nfunction d3_layout_treeAncestor(vim, node, ancestor) {\n  return vim._tree.ancestor.parent == node.parent\n      ? vim._tree.ancestor\n      : ancestor;\n}\n// Squarified Treemaps by Mark Bruls, Kees Huizing, and Jarke J. van Wijk\n// Modified to support a target aspect ratio by Jeff Heer\nd3.layout.treemap = function() {\n  var hierarchy = d3.layout.hierarchy(),\n      round = Math.round,\n      size = [1, 1], // width, height\n      padding = null,\n      pad = d3_layout_treemapPadNull,\n      sticky = false,\n      stickies,\n      ratio = 0.5 * (1 + Math.sqrt(5)); // golden ratio\n\n  // Compute the area for each child based on value & scale.\n  function scale(children, k) {\n    var i = -1,\n        n = children.length,\n        child,\n        area;\n    while (++i < n) {\n      area = (child = children[i]).value * (k < 0 ? 0 : k);\n      child.area = isNaN(area) || area <= 0 ? 0 : area;\n    }\n  }\n\n  // Recursively arranges the specified node's children into squarified rows.\n  function squarify(node) {\n    var children = node.children;\n    if (children && children.length) {\n      var rect = pad(node),\n          row = [],\n          remaining = children.slice(), // copy-on-write\n          child,\n          best = Infinity, // the best row score so far\n          score, // the current row score\n          u = Math.min(rect.dx, rect.dy), // initial orientation\n          n;\n      scale(remaining, rect.dx * rect.dy / node.value);\n      row.area = 0;\n      while ((n = remaining.length) > 0) {\n        row.push(child = remaining[n - 1]);\n        row.area += child.area;\n        if ((score = worst(row, u)) <= best) { // continue with this orientation\n          remaining.pop();\n          best = score;\n        } else { // abort, and try a different orientation\n          row.area -= row.pop().area;\n          position(row, u, rect, false);\n          u = Math.min(rect.dx, rect.dy);\n          row.length = row.area = 0;\n          best = Infinity;\n        }\n      }\n      if (row.length) {\n        position(row, u, rect, true);\n        row.length = row.area = 0;\n      }\n      children.forEach(squarify);\n    }\n  }\n\n  // Recursively resizes the specified node's children into existing rows.\n  // Preserves the existing layout!\n  function stickify(node) {\n    var children = node.children;\n    if (children && children.length) {\n      var rect = pad(node),\n          remaining = children.slice(), // copy-on-write\n          child,\n          row = [];\n      scale(remaining, rect.dx * rect.dy / node.value);\n      row.area = 0;\n      while (child = remaining.pop()) {\n        row.push(child);\n        row.area += child.area;\n        if (child.z != null) {\n          position(row, child.z ? rect.dx : rect.dy, rect, !remaining.length);\n          row.length = row.area = 0;\n        }\n      }\n      children.forEach(stickify);\n    }\n  }\n\n  // Computes the score for the specified row, as the worst aspect ratio.\n  function worst(row, u) {\n    var s = row.area,\n        r,\n        rmax = 0,\n        rmin = Infinity,\n        i = -1,\n        n = row.length;\n    while (++i < n) {\n      if (!(r = row[i].area)) continue;\n      if (r < rmin) rmin = r;\n      if (r > rmax) rmax = r;\n    }\n    s *= s;\n    u *= u;\n    return s\n        ? Math.max((u * rmax * ratio) / s, s / (u * rmin * ratio))\n        : Infinity;\n  }\n\n  // Positions the specified row of nodes. Modifies `rect`.\n  function position(row, u, rect, flush) {\n    var i = -1,\n        n = row.length,\n        x = rect.x,\n        y = rect.y,\n        v = u ? round(row.area / u) : 0,\n        o;\n    if (u == rect.dx) { // horizontal subdivision\n      if (flush || v > rect.dy) v = rect.dy; // over+underflow\n      while (++i < n) {\n        o = row[i];\n        o.x = x;\n        o.y = y;\n        o.dy = v;\n        x += o.dx = Math.min(rect.x + rect.dx - x, v ? round(o.area / v) : 0);\n      }\n      o.z = true;\n      o.dx += rect.x + rect.dx - x; // rounding error\n      rect.y += v;\n      rect.dy -= v;\n    } else { // vertical subdivision\n      if (flush || v > rect.dx) v = rect.dx; // over+underflow\n      while (++i < n) {\n        o = row[i];\n        o.x = x;\n        o.y = y;\n        o.dx = v;\n        y += o.dy = Math.min(rect.y + rect.dy - y, v ? round(o.area / v) : 0);\n      }\n      o.z = false;\n      o.dy += rect.y + rect.dy - y; // rounding error\n      rect.x += v;\n      rect.dx -= v;\n    }\n  }\n\n  function treemap(d) {\n    var nodes = stickies || hierarchy(d),\n        root = nodes[0];\n    root.x = 0;\n    root.y = 0;\n    root.dx = size[0];\n    root.dy = size[1];\n    if (stickies) hierarchy.revalue(root);\n    scale([root], root.dx * root.dy / root.value);\n    (stickies ? stickify : squarify)(root);\n    if (sticky) stickies = nodes;\n    return nodes;\n  }\n\n  treemap.size = function(x) {\n    if (!arguments.length) return size;\n    size = x;\n    return treemap;\n  };\n\n  treemap.padding = function(x) {\n    if (!arguments.length) return padding;\n\n    function padFunction(node) {\n      var p = x.call(treemap, node, node.depth);\n      return p == null\n          ? d3_layout_treemapPadNull(node)\n          : d3_layout_treemapPad(node, typeof p === \"number\" ? [p, p, p, p] : p);\n    }\n\n    function padConstant(node) {\n      return d3_layout_treemapPad(node, x);\n    }\n\n    var type;\n    pad = (padding = x) == null ? d3_layout_treemapPadNull\n        : (type = typeof x) === \"function\" ? padFunction\n        : type === \"number\" ? (x = [x, x, x, x], padConstant)\n        : padConstant;\n    return treemap;\n  };\n\n  treemap.round = function(x) {\n    if (!arguments.length) return round != Number;\n    round = x ? Math.round : Number;\n    return treemap;\n  };\n\n  treemap.sticky = function(x) {\n    if (!arguments.length) return sticky;\n    sticky = x;\n    stickies = null;\n    return treemap;\n  };\n\n  treemap.ratio = function(x) {\n    if (!arguments.length) return ratio;\n    ratio = x;\n    return treemap;\n  };\n\n  return d3_layout_hierarchyRebind(treemap, hierarchy);\n};\n\nfunction d3_layout_treemapPadNull(node) {\n  return {x: node.x, y: node.y, dx: node.dx, dy: node.dy};\n}\n\nfunction d3_layout_treemapPad(node, padding) {\n  var x = node.x + padding[3],\n      y = node.y + padding[0],\n      dx = node.dx - padding[1] - padding[3],\n      dy = node.dy - padding[0] - padding[2];\n  if (dx < 0) { x += dx / 2; dx = 0; }\n  if (dy < 0) { y += dy / 2; dy = 0; }\n  return {x: x, y: y, dx: dx, dy: dy};\n}\nd3.csv = function(url, callback) {\n  d3.text(url, \"text/csv\", function(text) {\n    callback(text && d3.csv.parse(text));\n  });\n};\nd3.csv.parse = function(text) {\n  var header;\n  return d3.csv.parseRows(text, function(row, i) {\n    if (i) {\n      var o = {}, j = -1, m = header.length;\n      while (++j < m) o[header[j]] = row[j];\n      return o;\n    } else {\n      header = row;\n      return null;\n    }\n  });\n};\n\nd3.csv.parseRows = function(text, f) {\n  var EOL = {}, // sentinel value for end-of-line\n      EOF = {}, // sentinel value for end-of-file\n      rows = [], // output rows\n      re = /\\r\\n|[,\\r\\n]/g, // field separator regex\n      n = 0, // the current line number\n      t, // the current token\n      eol; // is the current token followed by EOL?\n\n  re.lastIndex = 0; // work-around bug in FF 3.6\n\n  /** @private Returns the next token. */\n  function token() {\n    if (re.lastIndex >= text.length) return EOF; // special case: end of file\n    if (eol) { eol = false; return EOL; } // special case: end of line\n\n    // special case: quotes\n    var j = re.lastIndex;\n    if (text.charCodeAt(j) === 34) {\n      var i = j;\n      while (i++ < text.length) {\n        if (text.charCodeAt(i) === 34) {\n          if (text.charCodeAt(i + 1) !== 34) break;\n          i++;\n        }\n      }\n      re.lastIndex = i + 2;\n      var c = text.charCodeAt(i + 1);\n      if (c === 13) {\n        eol = true;\n        if (text.charCodeAt(i + 2) === 10) re.lastIndex++;\n      } else if (c === 10) {\n        eol = true;\n      }\n      return text.substring(j + 1, i).replace(/\"\"/g, \"\\\"\");\n    }\n\n    // common case\n    var m = re.exec(text);\n    if (m) {\n      eol = m[0].charCodeAt(0) !== 44;\n      return text.substring(j, m.index);\n    }\n    re.lastIndex = text.length;\n    return text.substring(j);\n  }\n\n  while ((t = token()) !== EOF) {\n    var a = [];\n    while ((t !== EOL) && (t !== EOF)) {\n      a.push(t);\n      t = token();\n    }\n    if (f && !(a = f(a, n++))) continue;\n    rows.push(a);\n  }\n\n  return rows;\n};\nd3.csv.format = function(rows) {\n  return rows.map(d3_csv_formatRow).join(\"\\n\");\n};\n\nfunction d3_csv_formatRow(row) {\n  return row.map(d3_csv_formatValue).join(\",\");\n}\n\nfunction d3_csv_formatValue(text) {\n  return /[\",\\n]/.test(text)\n      ? \"\\\"\" + text.replace(/\\\"/g, \"\\\"\\\"\") + \"\\\"\"\n      : text;\n}\nd3.geo = {};\n\nvar d3_geo_radians = Math.PI / 180;\n// TODO clip input coordinates on opposite hemisphere\nd3.geo.azimuthal = function() {\n  var mode = \"orthographic\", // or stereographic, gnomonic, equidistant or equalarea\n      origin,\n      scale = 200,\n      translate = [480, 250],\n      x0,\n      y0,\n      cy0,\n      sy0;\n\n  function azimuthal(coordinates) {\n    var x1 = coordinates[0] * d3_geo_radians - x0,\n        y1 = coordinates[1] * d3_geo_radians,\n        cx1 = Math.cos(x1),\n        sx1 = Math.sin(x1),\n        cy1 = Math.cos(y1),\n        sy1 = Math.sin(y1),\n        cc = mode !== \"orthographic\" ? sy0 * sy1 + cy0 * cy1 * cx1 : null,\n        c,\n        k = mode === \"stereographic\" ? 1 / (1 + cc)\n          : mode === \"gnomonic\" ? 1 / cc\n          : mode === \"equidistant\" ? (c = Math.acos(cc), c ? c / Math.sin(c) : 0)\n          : mode === \"equalarea\" ? Math.sqrt(2 / (1 + cc))\n          : 1,\n        x = k * cy1 * sx1,\n        y = k * (sy0 * cy1 * cx1 - cy0 * sy1);\n    return [\n      scale * x + translate[0],\n      scale * y + translate[1]\n    ];\n  }\n\n  azimuthal.invert = function(coordinates) {\n    var x = (coordinates[0] - translate[0]) / scale,\n        y = (coordinates[1] - translate[1]) / scale,\n        p = Math.sqrt(x * x + y * y),\n        c = mode === \"stereographic\" ? 2 * Math.atan(p)\n          : mode === \"gnomonic\" ? Math.atan(p)\n          : mode === \"equidistant\" ? p\n          : mode === \"equalarea\" ? 2 * Math.asin(.5 * p)\n          : Math.asin(p),\n        sc = Math.sin(c),\n        cc = Math.cos(c);\n    return [\n      (x0 + Math.atan2(x * sc, p * cy0 * cc + y * sy0 * sc)) / d3_geo_radians,\n      Math.asin(cc * sy0 - (p ? (y * sc * cy0) / p : 0)) / d3_geo_radians\n    ];\n  };\n\n  azimuthal.mode = function(x) {\n    if (!arguments.length) return mode;\n    mode = x + \"\";\n    return azimuthal;\n  };\n\n  azimuthal.origin = function(x) {\n    if (!arguments.length) return origin;\n    origin = x;\n    x0 = origin[0] * d3_geo_radians;\n    y0 = origin[1] * d3_geo_radians;\n    cy0 = Math.cos(y0);\n    sy0 = Math.sin(y0);\n    return azimuthal;\n  };\n\n  azimuthal.scale = function(x) {\n    if (!arguments.length) return scale;\n    scale = +x;\n    return azimuthal;\n  };\n\n  azimuthal.translate = function(x) {\n    if (!arguments.length) return translate;\n    translate = [+x[0], +x[1]];\n    return azimuthal;\n  };\n\n  return azimuthal.origin([0, 0]);\n};\n// Derived from Tom Carden's Albers implementation for Protovis.\n// http://gist.github.com/476238\n// http://mathworld.wolfram.com/AlbersEqual-AreaConicProjection.html\n\nd3.geo.albers = function() {\n  var origin = [-98, 38],\n      parallels = [29.5, 45.5],\n      scale = 1000,\n      translate = [480, 250],\n      lng0, // d3_geo_radians * origin[0]\n      n,\n      C,\n      p0;\n\n  function albers(coordinates) {\n    var t = n * (d3_geo_radians * coordinates[0] - lng0),\n        p = Math.sqrt(C - 2 * n * Math.sin(d3_geo_radians * coordinates[1])) / n;\n    return [\n      scale * p * Math.sin(t) + translate[0],\n      scale * (p * Math.cos(t) - p0) + translate[1]\n    ];\n  }\n\n  albers.invert = function(coordinates) {\n    var x = (coordinates[0] - translate[0]) / scale,\n        y = (coordinates[1] - translate[1]) / scale,\n        p0y = p0 + y,\n        t = Math.atan2(x, p0y),\n        p = Math.sqrt(x * x + p0y * p0y);\n    return [\n      (lng0 + t / n) / d3_geo_radians,\n      Math.asin((C - p * p * n * n) / (2 * n)) / d3_geo_radians\n    ];\n  };\n\n  function reload() {\n    var phi1 = d3_geo_radians * parallels[0],\n        phi2 = d3_geo_radians * parallels[1],\n        lat0 = d3_geo_radians * origin[1],\n        s = Math.sin(phi1),\n        c = Math.cos(phi1);\n    lng0 = d3_geo_radians * origin[0];\n    n = .5 * (s + Math.sin(phi2));\n    C = c * c + 2 * n * s;\n    p0 = Math.sqrt(C - 2 * n * Math.sin(lat0)) / n;\n    return albers;\n  }\n\n  albers.origin = function(x) {\n    if (!arguments.length) return origin;\n    origin = [+x[0], +x[1]];\n    return reload();\n  };\n\n  albers.parallels = function(x) {\n    if (!arguments.length) return parallels;\n    parallels = [+x[0], +x[1]];\n    return reload();\n  };\n\n  albers.scale = function(x) {\n    if (!arguments.length) return scale;\n    scale = +x;\n    return albers;\n  };\n\n  albers.translate = function(x) {\n    if (!arguments.length) return translate;\n    translate = [+x[0], +x[1]];\n    return albers;\n  };\n\n  return reload();\n};\n\n// A composite projection for the United States, 960x500. The set of standard\n// parallels for each region comes from USGS, which is published here:\n// http://egsc.usgs.gov/isb/pubs/MapProjections/projections.html#albers\n// TODO allow the composite projection to be rescaled?\nd3.geo.albersUsa = function() {\n  var lower48 = d3.geo.albers();\n\n  var alaska = d3.geo.albers()\n      .origin([-160, 60])\n      .parallels([55, 65]);\n\n  var hawaii = d3.geo.albers()\n      .origin([-160, 20])\n      .parallels([8, 18]);\n\n  var puertoRico = d3.geo.albers()\n      .origin([-60, 10])\n      .parallels([8, 18]);\n\n  function albersUsa(coordinates) {\n    var lon = coordinates[0],\n        lat = coordinates[1];\n    return (lat > 50 ? alaska\n        : lon < -140 ? hawaii\n        : lat < 21 ? puertoRico\n        : lower48)(coordinates);\n  }\n\n  albersUsa.scale = function(x) {\n    if (!arguments.length) return lower48.scale();\n    lower48.scale(x);\n    alaska.scale(x * .6);\n    hawaii.scale(x);\n    puertoRico.scale(x * 1.5);\n    return albersUsa.translate(lower48.translate());\n  };\n\n  albersUsa.translate = function(x) {\n    if (!arguments.length) return lower48.translate();\n    var dz = lower48.scale() / 1000,\n        dx = x[0],\n        dy = x[1];\n    lower48.translate(x);\n    alaska.translate([dx - 400 * dz, dy + 170 * dz]);\n    hawaii.translate([dx - 190 * dz, dy + 200 * dz]);\n    puertoRico.translate([dx + 580 * dz, dy + 430 * dz]);\n    return albersUsa;\n  };\n\n  return albersUsa.scale(lower48.scale());\n};\nd3.geo.bonne = function() {\n  var scale = 200,\n      translate = [480, 250],\n      x0, // origin longitude in radians\n      y0, // origin latitude in radians\n      y1, // parallel latitude in radians\n      c1; // cot(y1)\n\n  function bonne(coordinates) {\n    var x = coordinates[0] * d3_geo_radians - x0,\n        y = coordinates[1] * d3_geo_radians - y0;\n    if (y1) {\n      var p = c1 + y1 - y, E = x * Math.cos(y) / p;\n      x = p * Math.sin(E);\n      y = p * Math.cos(E) - c1;\n    } else {\n      x *= Math.cos(y);\n      y *= -1;\n    }\n    return [\n      scale * x + translate[0],\n      scale * y + translate[1]\n    ];\n  }\n\n  bonne.invert = function(coordinates) {\n    var x = (coordinates[0] - translate[0]) / scale,\n        y = (coordinates[1] - translate[1]) / scale;\n    if (y1) {\n      var c = c1 + y, p = Math.sqrt(x * x + c * c);\n      y = c1 + y1 - p;\n      x = x0 + p * Math.atan2(x, c) / Math.cos(y);\n    } else {\n      y *= -1;\n      x /= Math.cos(y);\n    }\n    return [\n      x / d3_geo_radians,\n      y / d3_geo_radians\n    ];\n  };\n\n  // 90° for Werner, 0° for Sinusoidal\n  bonne.parallel = function(x) {\n    if (!arguments.length) return y1 / d3_geo_radians;\n    c1 = 1 / Math.tan(y1 = x * d3_geo_radians);\n    return bonne;\n  };\n\n  bonne.origin = function(x) {\n    if (!arguments.length) return [x0 / d3_geo_radians, y0 / d3_geo_radians];\n    x0 = x[0] * d3_geo_radians;\n    y0 = x[1] * d3_geo_radians;\n    return bonne;\n  };\n\n  bonne.scale = function(x) {\n    if (!arguments.length) return scale;\n    scale = +x;\n    return bonne;\n  };\n\n  bonne.translate = function(x) {\n    if (!arguments.length) return translate;\n    translate = [+x[0], +x[1]];\n    return bonne;\n  };\n\n  return bonne.origin([0, 0]).parallel(45);\n};\nd3.geo.equirectangular = function() {\n  var scale = 500,\n      translate = [480, 250];\n\n  function equirectangular(coordinates) {\n    var x = coordinates[0] / 360,\n        y = -coordinates[1] / 360;\n    return [\n      scale * x + translate[0],\n      scale * y + translate[1]\n    ];\n  }\n\n  equirectangular.invert = function(coordinates) {\n    var x = (coordinates[0] - translate[0]) / scale,\n        y = (coordinates[1] - translate[1]) / scale;\n    return [\n      360 * x,\n      -360 * y\n    ];\n  };\n\n  equirectangular.scale = function(x) {\n    if (!arguments.length) return scale;\n    scale = +x;\n    return equirectangular;\n  };\n\n  equirectangular.translate = function(x) {\n    if (!arguments.length) return translate;\n    translate = [+x[0], +x[1]];\n    return equirectangular;\n  };\n\n  return equirectangular;\n};\nd3.geo.mercator = function() {\n  var scale = 500,\n      translate = [480, 250];\n\n  function mercator(coordinates) {\n    var x = coordinates[0] / 360,\n        y = -(Math.log(Math.tan(Math.PI / 4 + coordinates[1] * d3_geo_radians / 2)) / d3_geo_radians) / 360;\n    return [\n      scale * x + translate[0],\n      scale * Math.max(-.5, Math.min(.5, y)) + translate[1]\n    ];\n  }\n\n  mercator.invert = function(coordinates) {\n    var x = (coordinates[0] - translate[0]) / scale,\n        y = (coordinates[1] - translate[1]) / scale;\n    return [\n      360 * x,\n      2 * Math.atan(Math.exp(-360 * y * d3_geo_radians)) / d3_geo_radians - 90\n    ];\n  };\n\n  mercator.scale = function(x) {\n    if (!arguments.length) return scale;\n    scale = +x;\n    return mercator;\n  };\n\n  mercator.translate = function(x) {\n    if (!arguments.length) return translate;\n    translate = [+x[0], +x[1]];\n    return mercator;\n  };\n\n  return mercator;\n};\nfunction d3_geo_type(types, defaultValue) {\n  return function(object) {\n    return object && types.hasOwnProperty(object.type) ? types[object.type](object) : defaultValue;\n  };\n}\n/**\n * Returns a function that, given a GeoJSON object (e.g., a feature), returns\n * the corresponding SVG path. The function can be customized by overriding the\n * projection. Point features are mapped to circles with a default radius of\n * 4.5px; the radius can be specified either as a constant or a function that\n * is evaluated per object.\n */\nd3.geo.path = function() {\n  var pointRadius = 4.5,\n      pointCircle = d3_path_circle(pointRadius),\n      projection = d3.geo.albersUsa();\n\n  function path(d, i) {\n    if (typeof pointRadius === \"function\") {\n      pointCircle = d3_path_circle(pointRadius.apply(this, arguments));\n    }\n    return pathType(d) || null;\n  }\n\n  function project(coordinates) {\n    return projection(coordinates).join(\",\");\n  }\n\n  var pathType = d3_geo_type({\n\n    FeatureCollection: function(o) {\n      var path = [],\n          features = o.features,\n          i = -1, // features.index\n          n = features.length;\n      while (++i < n) path.push(pathType(features[i].geometry));\n      return path.join(\"\");\n    },\n\n    Feature: function(o) {\n      return pathType(o.geometry);\n    },\n\n    Point: function(o) {\n      return \"M\" + project(o.coordinates) + pointCircle;\n    },\n\n    MultiPoint: function(o) {\n      var path = [],\n          coordinates = o.coordinates,\n          i = -1, // coordinates.index\n          n = coordinates.length;\n      while (++i < n) path.push(\"M\", project(coordinates[i]), pointCircle);\n      return path.join(\"\");\n    },\n\n    LineString: function(o) {\n      var path = [\"M\"],\n          coordinates = o.coordinates,\n          i = -1, // coordinates.index\n          n = coordinates.length;\n      while (++i < n) path.push(project(coordinates[i]), \"L\");\n      path.pop();\n      return path.join(\"\");\n    },\n\n    MultiLineString: function(o) {\n      var path = [],\n          coordinates = o.coordinates,\n          i = -1, // coordinates.index\n          n = coordinates.length,\n          subcoordinates, // coordinates[i]\n          j, // subcoordinates.index\n          m; // subcoordinates.length\n      while (++i < n) {\n        subcoordinates = coordinates[i];\n        j = -1;\n        m = subcoordinates.length;\n        path.push(\"M\");\n        while (++j < m) path.push(project(subcoordinates[j]), \"L\");\n        path.pop();\n      }\n      return path.join(\"\");\n    },\n\n    Polygon: function(o) {\n      var path = [],\n          coordinates = o.coordinates,\n          i = -1, // coordinates.index\n          n = coordinates.length,\n          subcoordinates, // coordinates[i]\n          j, // subcoordinates.index\n          m; // subcoordinates.length\n      while (++i < n) {\n        subcoordinates = coordinates[i];\n        j = -1;\n        if ((m = subcoordinates.length - 1) > 0) {\n          path.push(\"M\");\n          while (++j < m) path.push(project(subcoordinates[j]), \"L\");\n          path[path.length - 1] = \"Z\";\n        }\n      }\n      return path.join(\"\");\n    },\n\n    MultiPolygon: function(o) {\n      var path = [],\n          coordinates = o.coordinates,\n          i = -1, // coordinates index\n          n = coordinates.length,\n          subcoordinates, // coordinates[i]\n          j, // subcoordinates index\n          m, // subcoordinates.length\n          subsubcoordinates, // subcoordinates[j]\n          k, // subsubcoordinates index\n          p; // subsubcoordinates.length\n      while (++i < n) {\n        subcoordinates = coordinates[i];\n        j = -1;\n        m = subcoordinates.length;\n        while (++j < m) {\n          subsubcoordinates = subcoordinates[j];\n          k = -1;\n          if ((p = subsubcoordinates.length - 1) > 0) {\n            path.push(\"M\");\n            while (++k < p) path.push(project(subsubcoordinates[k]), \"L\");\n            path[path.length - 1] = \"Z\";\n          }\n        }\n      }\n      return path.join(\"\");\n    },\n\n    GeometryCollection: function(o) {\n      var path = [],\n          geometries = o.geometries,\n          i = -1, // geometries index\n          n = geometries.length;\n      while (++i < n) path.push(pathType(geometries[i]));\n      return path.join(\"\");\n    }\n\n  });\n\n  var areaType = path.area = d3_geo_type({\n\n    FeatureCollection: function(o) {\n      var area = 0,\n          features = o.features,\n          i = -1, // features.index\n          n = features.length;\n      while (++i < n) area += areaType(features[i]);\n      return area;\n    },\n\n    Feature: function(o) {\n      return areaType(o.geometry);\n    },\n\n    Polygon: function(o) {\n      return polygonArea(o.coordinates);\n    },\n\n    MultiPolygon: function(o) {\n      var sum = 0,\n          coordinates = o.coordinates,\n          i = -1, // coordinates index\n          n = coordinates.length;\n      while (++i < n) sum += polygonArea(coordinates[i]);\n      return sum;\n    },\n\n    GeometryCollection: function(o) {\n      var sum = 0,\n          geometries = o.geometries,\n          i = -1, // geometries index\n          n = geometries.length;\n      while (++i < n) sum += areaType(geometries[i]);\n      return sum;\n    }\n\n  }, 0);\n\n  function polygonArea(coordinates) {\n    var sum = area(coordinates[0]), // exterior ring\n        i = 0, // coordinates.index\n        n = coordinates.length;\n    while (++i < n) sum -= area(coordinates[i]); // holes\n    return sum;\n  }\n\n  function polygonCentroid(coordinates) {\n    var polygon = d3.geom.polygon(coordinates[0].map(projection)), // exterior ring\n        area = polygon.area(),\n        centroid = polygon.centroid(area < 0 ? (area *= -1, 1) : -1),\n        x = centroid[0],\n        y = centroid[1],\n        z = area,\n        i = 0, // coordinates index\n        n = coordinates.length;\n    while (++i < n) {\n      polygon = d3.geom.polygon(coordinates[i].map(projection)); // holes\n      area = polygon.area();\n      centroid = polygon.centroid(area < 0 ? (area *= -1, 1) : -1);\n      x -= centroid[0];\n      y -= centroid[1];\n      z -= area;\n    }\n    return [x, y, 6 * z]; // weighted centroid\n  }\n\n  var centroidType = path.centroid = d3_geo_type({\n\n    // TODO FeatureCollection\n    // TODO Point\n    // TODO MultiPoint\n    // TODO LineString\n    // TODO MultiLineString\n    // TODO GeometryCollection\n\n    Feature: function(o) {\n      return centroidType(o.geometry);\n    },\n\n    Polygon: function(o) {\n      var centroid = polygonCentroid(o.coordinates);\n      return [centroid[0] / centroid[2], centroid[1] / centroid[2]];\n    },\n\n    MultiPolygon: function(o) {\n      var area = 0,\n          coordinates = o.coordinates,\n          centroid,\n          x = 0,\n          y = 0,\n          z = 0,\n          i = -1, // coordinates index\n          n = coordinates.length;\n      while (++i < n) {\n        centroid = polygonCentroid(coordinates[i]);\n        x += centroid[0];\n        y += centroid[1];\n        z += centroid[2];\n      }\n      return [x / z, y / z];\n    }\n\n  });\n\n  function area(coordinates) {\n    return Math.abs(d3.geom.polygon(coordinates.map(projection)).area());\n  }\n\n  path.projection = function(x) {\n    projection = x;\n    return path;\n  };\n\n  path.pointRadius = function(x) {\n    if (typeof x === \"function\") pointRadius = x;\n    else {\n      pointRadius = +x;\n      pointCircle = d3_path_circle(pointRadius);\n    }\n    return path;\n  };\n\n  return path;\n};\n\nfunction d3_path_circle(radius) {\n  return \"m0,\" + radius\n      + \"a\" + radius + \",\" + radius + \" 0 1,1 0,\" + (-2 * radius)\n      + \"a\" + radius + \",\" + radius + \" 0 1,1 0,\" + (+2 * radius)\n      + \"z\";\n}\n/**\n * Given a GeoJSON object, returns the corresponding bounding box. The bounding\n * box is represented by a two-dimensional array: [[left, bottom], [right,\n * top]], where left is the minimum longitude, bottom is the minimum latitude,\n * right is maximum longitude, and top is the maximum latitude.\n */\nd3.geo.bounds = function(feature) {\n  var left = Infinity,\n      bottom = Infinity,\n      right = -Infinity,\n      top = -Infinity;\n  d3_geo_bounds(feature, function(x, y) {\n    if (x < left) left = x;\n    if (x > right) right = x;\n    if (y < bottom) bottom = y;\n    if (y > top) top = y;\n  });\n  return [[left, bottom], [right, top]];\n};\n\nfunction d3_geo_bounds(o, f) {\n  if (d3_geo_boundsTypes.hasOwnProperty(o.type)) d3_geo_boundsTypes[o.type](o, f);\n}\n\nvar d3_geo_boundsTypes = {\n  Feature: d3_geo_boundsFeature,\n  FeatureCollection: d3_geo_boundsFeatureCollection,\n  GeometryCollection: d3_geo_boundsGeometryCollection,\n  LineString: d3_geo_boundsLineString,\n  MultiLineString: d3_geo_boundsMultiLineString,\n  MultiPoint: d3_geo_boundsLineString,\n  MultiPolygon: d3_geo_boundsMultiPolygon,\n  Point: d3_geo_boundsPoint,\n  Polygon: d3_geo_boundsPolygon\n};\n\nfunction d3_geo_boundsFeature(o, f) {\n  d3_geo_bounds(o.geometry, f);\n}\n\nfunction d3_geo_boundsFeatureCollection(o, f) {\n  for (var a = o.features, i = 0, n = a.length; i < n; i++) {\n    d3_geo_bounds(a[i].geometry, f);\n  }\n}\n\nfunction d3_geo_boundsGeometryCollection(o, f) {\n  for (var a = o.geometries, i = 0, n = a.length; i < n; i++) {\n    d3_geo_bounds(a[i], f);\n  }\n}\n\nfunction d3_geo_boundsLineString(o, f) {\n  for (var a = o.coordinates, i = 0, n = a.length; i < n; i++) {\n    f.apply(null, a[i]);\n  }\n}\n\nfunction d3_geo_boundsMultiLineString(o, f) {\n  for (var a = o.coordinates, i = 0, n = a.length; i < n; i++) {\n    for (var b = a[i], j = 0, m = b.length; j < m; j++) {\n      f.apply(null, b[j]);\n    }\n  }\n}\n\nfunction d3_geo_boundsMultiPolygon(o, f) {\n  for (var a = o.coordinates, i = 0, n = a.length; i < n; i++) {\n    for (var b = a[i][0], j = 0, m = b.length; j < m; j++) {\n      f.apply(null, b[j]);\n    }\n  }\n}\n\nfunction d3_geo_boundsPoint(o, f) {\n  f.apply(null, o.coordinates);\n}\n\nfunction d3_geo_boundsPolygon(o, f) {\n  for (var a = o.coordinates[0], i = 0, n = a.length; i < n; i++) {\n    f.apply(null, a[i]);\n  }\n}\n// TODO breakAtDateLine?\n\nd3.geo.circle = function() {\n  var origin = [0, 0],\n      degrees = 90 - 1e-2,\n      radians = degrees * d3_geo_radians,\n      arc = d3.geo.greatArc().target(Object);\n\n  function circle() {\n    // TODO render a circle as a Polygon\n  }\n\n  function visible(point) {\n    return arc.distance(point) < radians;\n  }\n\n  circle.clip = function(d) {\n    arc.source(typeof origin === \"function\" ? origin.apply(this, arguments) : origin);\n    return clipType(d);\n  };\n\n  var clipType = d3_geo_type({\n\n    FeatureCollection: function(o) {\n      var features = o.features.map(clipType).filter(Object);\n      return features && (o = Object.create(o), o.features = features, o);\n    },\n\n    Feature: function(o) {\n      var geometry = clipType(o.geometry);\n      return geometry && (o = Object.create(o), o.geometry = geometry, o);\n    },\n\n    Point: function(o) {\n      return visible(o.coordinates) && o;\n    },\n\n    MultiPoint: function(o) {\n      var coordinates = o.coordinates.filter(visible);\n      return coordinates.length && {\n        type: o.type,\n        coordinates: coordinates\n      };\n    },\n\n    LineString: function(o) {\n      var coordinates = clip(o.coordinates);\n      return coordinates.length && (o = Object.create(o), o.coordinates = coordinates, o);\n    },\n\n    MultiLineString: function(o) {\n      var coordinates = o.coordinates.map(clip).filter(function(d) { return d.length; });\n      return coordinates.length && (o = Object.create(o), o.coordinates = coordinates, o);\n    },\n\n    Polygon: function(o) {\n      var coordinates = o.coordinates.map(clip);\n      return coordinates[0].length && (o = Object.create(o), o.coordinates = coordinates, o);\n    },\n\n    MultiPolygon: function(o) {\n      var coordinates = o.coordinates.map(function(d) { return d.map(clip); }).filter(function(d) { return d[0].length; });\n      return coordinates.length && (o = Object.create(o), o.coordinates = coordinates, o);\n    },\n\n    GeometryCollection: function(o) {\n      var geometries = o.geometries.map(clipType).filter(Object);\n      return geometries.length && (o = Object.create(o), o.geometries = geometries, o);\n    }\n\n  });\n\n  function clip(coordinates) {\n    var i = -1,\n        n = coordinates.length,\n        clipped = [],\n        p0,\n        p1,\n        p2,\n        d0,\n        d1;\n\n    while (++i < n) {\n      d1 = arc.distance(p2 = coordinates[i]);\n      if (d1 < radians) {\n        if (p1) clipped.push(d3_geo_greatArcInterpolate(p1, p2)((d0 - radians) / (d0 - d1)));\n        clipped.push(p2);\n        p0 = p1 = null;\n      } else {\n        p1 = p2;\n        if (!p0 && clipped.length) {\n          clipped.push(d3_geo_greatArcInterpolate(clipped[clipped.length - 1], p1)((radians - d0) / (d1 - d0)));\n          p0 = p1;\n        }\n      }\n      d0 = d1;\n    }\n\n    if (p1 && clipped.length) {\n      d1 = arc.distance(p2 = clipped[0]);\n      clipped.push(d3_geo_greatArcInterpolate(p1, p2)((d0 - radians) / (d0 - d1)));\n    }\n\n    return resample(clipped);\n  }\n\n  // Resample coordinates, creating great arcs between each.\n  function resample(coordinates) {\n    var i = 0,\n        n = coordinates.length,\n        j,\n        m,\n        resampled = n ? [coordinates[0]] : coordinates,\n        resamples,\n        origin = arc.source();\n\n    while (++i < n) {\n      resamples = arc.source(coordinates[i - 1])(coordinates[i]).coordinates;\n      for (j = 0, m = resamples.length; ++j < m;) resampled.push(resamples[j]);\n    }\n\n    arc.source(origin);\n    return resampled;\n  }\n\n  circle.origin = function(x) {\n    if (!arguments.length) return origin;\n    origin = x;\n    return circle;\n  };\n\n  circle.angle = function(x) {\n    if (!arguments.length) return degrees;\n    radians = (degrees = +x) * d3_geo_radians;\n    return circle;\n  };\n\n  // Precision is specified in degrees.\n  circle.precision = function(x) {\n    if (!arguments.length) return arc.precision();\n    arc.precision(x);\n    return circle;\n  };\n\n  return circle;\n}\nd3.geo.greatArc = function() {\n  var source = d3_geo_greatArcSource,\n      target = d3_geo_greatArcTarget,\n      precision = 6 * d3_geo_radians;\n\n  function greatArc() {\n    var a = typeof source === \"function\" ? source.apply(this, arguments) : source,\n        b = typeof target === \"function\" ? target.apply(this, arguments) : target,\n        i = d3_geo_greatArcInterpolate(a, b),\n        dt = precision / i.d,\n        t = 0,\n        coordinates = [a];\n    while ((t += dt) < 1) coordinates.push(i(t));\n    coordinates.push(b);\n    return {\n      type: \"LineString\",\n      coordinates: coordinates\n    };\n  }\n\n  // Length returned in radians; multiply by radius for distance.\n  greatArc.distance = function() {\n    var a = typeof source === \"function\" ? source.apply(this, arguments) : source,\n        b = typeof target === \"function\" ? target.apply(this, arguments) : target;\n     return d3_geo_greatArcInterpolate(a, b).d;\n  };\n\n  greatArc.source = function(x) {\n    if (!arguments.length) return source;\n    source = x;\n    return greatArc;\n  };\n\n  greatArc.target = function(x) {\n    if (!arguments.length) return target;\n    target = x;\n    return greatArc;\n  };\n\n  // Precision is specified in degrees.\n  greatArc.precision = function(x) {\n    if (!arguments.length) return precision / d3_geo_radians;\n    precision = x * d3_geo_radians;\n    return greatArc;\n  };\n\n  return greatArc;\n};\n\nfunction d3_geo_greatArcSource(d) {\n  return d.source;\n}\n\nfunction d3_geo_greatArcTarget(d) {\n  return d.target;\n}\n\nfunction d3_geo_greatArcInterpolate(a, b) {\n  var x0 = a[0] * d3_geo_radians, cx0 = Math.cos(x0), sx0 = Math.sin(x0),\n      y0 = a[1] * d3_geo_radians, cy0 = Math.cos(y0), sy0 = Math.sin(y0),\n      x1 = b[0] * d3_geo_radians, cx1 = Math.cos(x1), sx1 = Math.sin(x1),\n      y1 = b[1] * d3_geo_radians, cy1 = Math.cos(y1), sy1 = Math.sin(y1),\n      d = interpolate.d = Math.acos(Math.max(-1, Math.min(1, sy0 * sy1 + cy0 * cy1 * Math.cos(x1 - x0)))),\n      sd = Math.sin(d);\n\n  // From http://williams.best.vwh.net/avform.htm#Intermediate\n  function interpolate(t) {\n    var A = Math.sin(d - (t *= d)) / sd,\n        B = Math.sin(t) / sd,\n        x = A * cy0 * cx0 + B * cy1 * cx1,\n        y = A * cy0 * sx0 + B * cy1 * sx1,\n        z = A * sy0       + B * sy1;\n    return [\n      Math.atan2(y, x) / d3_geo_radians,\n      Math.atan2(z, Math.sqrt(x * x + y * y)) / d3_geo_radians\n    ];\n  }\n\n  return interpolate;\n}\nd3.geo.greatCircle = d3.geo.circle;\nd3.geom = {};\n/**\n * Computes a contour for a given input grid function using the <a\n * href=\"http://en.wikipedia.org/wiki/Marching_squares\">marching\n * squares</a> algorithm. Returns the contour polygon as an array of points.\n *\n * @param grid a two-input function(x, y) that returns true for values\n * inside the contour and false for values outside the contour.\n * @param start an optional starting point [x, y] on the grid.\n * @returns polygon [[x1, y1], [x2, y2], …]\n */\nd3.geom.contour = function(grid, start) {\n  var s = start || d3_geom_contourStart(grid), // starting point\n      c = [],    // contour polygon\n      x = s[0],  // current x position\n      y = s[1],  // current y position\n      dx = 0,    // next x direction\n      dy = 0,    // next y direction\n      pdx = NaN, // previous x direction\n      pdy = NaN, // previous y direction\n      i = 0;\n\n  do {\n    // determine marching squares index\n    i = 0;\n    if (grid(x-1, y-1)) i += 1;\n    if (grid(x,   y-1)) i += 2;\n    if (grid(x-1, y  )) i += 4;\n    if (grid(x,   y  )) i += 8;\n\n    // determine next direction\n    if (i === 6) {\n      dx = pdy === -1 ? -1 : 1;\n      dy = 0;\n    } else if (i === 9) {\n      dx = 0;\n      dy = pdx === 1 ? -1 : 1;\n    } else {\n      dx = d3_geom_contourDx[i];\n      dy = d3_geom_contourDy[i];\n    }\n\n    // update contour polygon\n    if (dx != pdx && dy != pdy) {\n      c.push([x, y]);\n      pdx = dx;\n      pdy = dy;\n    }\n\n    x += dx;\n    y += dy;\n  } while (s[0] != x || s[1] != y);\n\n  return c;\n};\n\n// lookup tables for marching directions\nvar d3_geom_contourDx = [1, 0, 1, 1,-1, 0,-1, 1,0, 0,0,0,-1, 0,-1,NaN],\n    d3_geom_contourDy = [0,-1, 0, 0, 0,-1, 0, 0,1,-1,1,1, 0,-1, 0,NaN];\n\nfunction d3_geom_contourStart(grid) {\n  var x = 0,\n      y = 0;\n\n  // search for a starting point; begin at origin\n  // and proceed along outward-expanding diagonals\n  while (true) {\n    if (grid(x,y)) {\n      return [x,y];\n    }\n    if (x === 0) {\n      x = y + 1;\n      y = 0;\n    } else {\n      x = x - 1;\n      y = y + 1;\n    }\n  }\n}\n/**\n * Computes the 2D convex hull of a set of points using Graham's scanning\n * algorithm. The algorithm has been implemented as described in Cormen,\n * Leiserson, and Rivest's Introduction to Algorithms. The running time of\n * this algorithm is O(n log n), where n is the number of input points.\n *\n * @param vertices [[x1, y1], [x2, y2], …]\n * @returns polygon [[x1, y1], [x2, y2], …]\n */\nd3.geom.hull = function(vertices) {\n  if (vertices.length < 3) return [];\n\n  var len = vertices.length,\n      plen = len - 1,\n      points = [],\n      stack = [],\n      i, j, h = 0, x1, y1, x2, y2, u, v, a, sp;\n\n  // find the starting ref point: leftmost point with the minimum y coord\n  for (i=1; i<len; ++i) {\n    if (vertices[i][1] < vertices[h][1]) {\n      h = i;\n    } else if (vertices[i][1] == vertices[h][1]) {\n      h = (vertices[i][0] < vertices[h][0] ? i : h);\n    }\n  }\n\n  // calculate polar angles from ref point and sort\n  for (i=0; i<len; ++i) {\n    if (i === h) continue;\n    y1 = vertices[i][1] - vertices[h][1];\n    x1 = vertices[i][0] - vertices[h][0];\n    points.push({angle: Math.atan2(y1, x1), index: i});\n  }\n  points.sort(function(a, b) { return a.angle - b.angle; });\n\n  // toss out duplicate angles\n  a = points[0].angle;\n  v = points[0].index;\n  u = 0;\n  for (i=1; i<plen; ++i) {\n    j = points[i].index;\n    if (a == points[i].angle) {\n      // keep angle for point most distant from the reference\n      x1 = vertices[v][0] - vertices[h][0];\n      y1 = vertices[v][1] - vertices[h][1];\n      x2 = vertices[j][0] - vertices[h][0];\n      y2 = vertices[j][1] - vertices[h][1];\n      if ((x1*x1 + y1*y1) >= (x2*x2 + y2*y2)) {\n        points[i].index = -1;\n      } else {\n        points[u].index = -1;\n        a = points[i].angle;\n        u = i;\n        v = j;\n      }\n    } else {\n      a = points[i].angle;\n      u = i;\n      v = j;\n    }\n  }\n\n  // initialize the stack\n  stack.push(h);\n  for (i=0, j=0; i<2; ++j) {\n    if (points[j].index !== -1) {\n      stack.push(points[j].index);\n      i++;\n    }\n  }\n  sp = stack.length;\n\n  // do graham's scan\n  for (; j<plen; ++j) {\n    if (points[j].index === -1) continue; // skip tossed out points\n    while (!d3_geom_hullCCW(stack[sp-2], stack[sp-1], points[j].index, vertices)) {\n      --sp;\n    }\n    stack[sp++] = points[j].index;\n  }\n\n  // construct the hull\n  var poly = [];\n  for (i=0; i<sp; ++i) {\n    poly.push(vertices[stack[i]]);\n  }\n  return poly;\n}\n\n// are three points in counter-clockwise order?\nfunction d3_geom_hullCCW(i1, i2, i3, v) {\n  var t, a, b, c, d, e, f;\n  t = v[i1]; a = t[0]; b = t[1];\n  t = v[i2]; c = t[0]; d = t[1];\n  t = v[i3]; e = t[0]; f = t[1];\n  return ((f-b)*(c-a) - (d-b)*(e-a)) > 0;\n}\n// Note: requires coordinates to be counterclockwise and convex!\nd3.geom.polygon = function(coordinates) {\n\n  coordinates.area = function() {\n    var i = 0,\n        n = coordinates.length,\n        a = coordinates[n - 1][0] * coordinates[0][1],\n        b = coordinates[n - 1][1] * coordinates[0][0];\n    while (++i < n) {\n      a += coordinates[i - 1][0] * coordinates[i][1];\n      b += coordinates[i - 1][1] * coordinates[i][0];\n    }\n    return (b - a) * .5;\n  };\n\n  coordinates.centroid = function(k) {\n    var i = -1,\n        n = coordinates.length,\n        x = 0,\n        y = 0,\n        a,\n        b = coordinates[n - 1],\n        c;\n    if (!arguments.length) k = -1 / (6 * coordinates.area());\n    while (++i < n) {\n      a = b;\n      b = coordinates[i];\n      c = a[0] * b[1] - b[0] * a[1];\n      x += (a[0] + b[0]) * c;\n      y += (a[1] + b[1]) * c;\n    }\n    return [x * k, y * k];\n  };\n\n  // The Sutherland-Hodgman clipping algorithm.\n  coordinates.clip = function(subject) {\n    var input,\n        i = -1,\n        n = coordinates.length,\n        j,\n        m,\n        a = coordinates[n - 1],\n        b,\n        c,\n        d;\n    while (++i < n) {\n      input = subject.slice();\n      subject.length = 0;\n      b = coordinates[i];\n      c = input[(m = input.length) - 1];\n      j = -1;\n      while (++j < m) {\n        d = input[j];\n        if (d3_geom_polygonInside(d, a, b)) {\n          if (!d3_geom_polygonInside(c, a, b)) {\n            subject.push(d3_geom_polygonIntersect(c, d, a, b));\n          }\n          subject.push(d);\n        } else if (d3_geom_polygonInside(c, a, b)) {\n          subject.push(d3_geom_polygonIntersect(c, d, a, b));\n        }\n        c = d;\n      }\n      a = b;\n    }\n    return subject;\n  };\n\n  return coordinates;\n};\n\nfunction d3_geom_polygonInside(p, a, b) {\n  return (b[0] - a[0]) * (p[1] - a[1]) < (b[1] - a[1]) * (p[0] - a[0]);\n}\n\n// Intersect two infinite lines cd and ab.\nfunction d3_geom_polygonIntersect(c, d, a, b) {\n  var x1 = c[0], x2 = d[0], x3 = a[0], x4 = b[0],\n      y1 = c[1], y2 = d[1], y3 = a[1], y4 = b[1],\n      x13 = x1 - x3,\n      x21 = x2 - x1,\n      x43 = x4 - x3,\n      y13 = y1 - y3,\n      y21 = y2 - y1,\n      y43 = y4 - y3,\n      ua = (x43 * y13 - y43 * x13) / (y43 * x21 - x43 * y21);\n  return [x1 + ua * x21, y1 + ua * y21];\n}\n// Adapted from Nicolas Garcia Belmonte's JIT implementation:\n// http://blog.thejit.org/2010/02/12/voronoi-tessellation/\n// http://blog.thejit.org/assets/voronoijs/voronoi.js\n// See lib/jit/LICENSE for details.\n\n// Notes:\n//\n// This implementation does not clip the returned polygons, so if you want to\n// clip them to a particular shape you will need to do that either in SVG or by\n// post-processing with d3.geom.polygon's clip method.\n//\n// If any vertices are coincident or have NaN positions, the behavior of this\n// method is undefined. Most likely invalid polygons will be returned. You\n// should filter invalid points, and consolidate coincident points, before\n// computing the tessellation.\n\n/**\n * @param vertices [[x1, y1], [x2, y2], …]\n * @returns polygons [[[x1, y1], [x2, y2], …], …]\n */\nd3.geom.voronoi = function(vertices) {\n  var polygons = vertices.map(function() { return []; });\n\n  d3_voronoi_tessellate(vertices, function(e) {\n    var s1,\n        s2,\n        x1,\n        x2,\n        y1,\n        y2;\n    if (e.a === 1 && e.b >= 0) {\n      s1 = e.ep.r;\n      s2 = e.ep.l;\n    } else {\n      s1 = e.ep.l;\n      s2 = e.ep.r;\n    }\n    if (e.a === 1) {\n      y1 = s1 ? s1.y : -1e6;\n      x1 = e.c - e.b * y1;\n      y2 = s2 ? s2.y : 1e6;\n      x2 = e.c - e.b * y2;\n    } else {\n      x1 = s1 ? s1.x : -1e6;\n      y1 = e.c - e.a * x1;\n      x2 = s2 ? s2.x : 1e6;\n      y2 = e.c - e.a * x2;\n    }\n    var v1 = [x1, y1],\n        v2 = [x2, y2];\n    polygons[e.region.l.index].push(v1, v2);\n    polygons[e.region.r.index].push(v1, v2);\n  });\n\n  // Reconnect the polygon segments into counterclockwise loops.\n  return polygons.map(function(polygon, i) {\n    var cx = vertices[i][0],\n        cy = vertices[i][1];\n    polygon.forEach(function(v) {\n      v.angle = Math.atan2(v[0] - cx, v[1] - cy);\n    });\n    return polygon.sort(function(a, b) {\n      return a.angle - b.angle;\n    }).filter(function(d, i) {\n      return !i || (d.angle - polygon[i - 1].angle > 1e-10);\n    });\n  });\n};\n\nvar d3_voronoi_opposite = {\"l\": \"r\", \"r\": \"l\"};\n\nfunction d3_voronoi_tessellate(vertices, callback) {\n\n  var Sites = {\n    list: vertices\n      .map(function(v, i) {\n        return {\n          index: i,\n          x: v[0],\n          y: v[1]\n        };\n      })\n      .sort(function(a, b) {\n        return a.y < b.y ? -1\n          : a.y > b.y ? 1\n          : a.x < b.x ? -1\n          : a.x > b.x ? 1\n          : 0;\n      }),\n    bottomSite: null\n  };\n\n  var EdgeList = {\n    list: [],\n    leftEnd: null,\n    rightEnd: null,\n\n    init: function() {\n      EdgeList.leftEnd = EdgeList.createHalfEdge(null, \"l\");\n      EdgeList.rightEnd = EdgeList.createHalfEdge(null, \"l\");\n      EdgeList.leftEnd.r = EdgeList.rightEnd;\n      EdgeList.rightEnd.l = EdgeList.leftEnd;\n      EdgeList.list.unshift(EdgeList.leftEnd, EdgeList.rightEnd);\n    },\n\n    createHalfEdge: function(edge, side) {\n      return {\n        edge: edge,\n        side: side,\n        vertex: null,\n        \"l\": null,\n        \"r\": null\n      };\n    },\n\n    insert: function(lb, he) {\n      he.l = lb;\n      he.r = lb.r;\n      lb.r.l = he;\n      lb.r = he;\n    },\n\n    leftBound: function(p) {\n      var he = EdgeList.leftEnd;\n      do {\n        he = he.r;\n      } while (he != EdgeList.rightEnd && Geom.rightOf(he, p));\n      he = he.l;\n      return he;\n    },\n\n    del: function(he) {\n      he.l.r = he.r;\n      he.r.l = he.l;\n      he.edge = null;\n    },\n\n    right: function(he) {\n      return he.r;\n    },\n\n    left: function(he) {\n      return he.l;\n    },\n\n    leftRegion: function(he) {\n      return he.edge == null\n          ? Sites.bottomSite\n          : he.edge.region[he.side];\n    },\n\n    rightRegion: function(he) {\n      return he.edge == null\n          ? Sites.bottomSite\n          : he.edge.region[d3_voronoi_opposite[he.side]];\n    }\n  };\n\n  var Geom = {\n\n    bisect: function(s1, s2) {\n      var newEdge = {\n        region: {\"l\": s1, \"r\": s2},\n        ep: {\"l\": null, \"r\": null}\n      };\n\n      var dx = s2.x - s1.x,\n          dy = s2.y - s1.y,\n          adx = dx > 0 ? dx : -dx,\n          ady = dy > 0 ? dy : -dy;\n\n      newEdge.c = s1.x * dx + s1.y * dy\n          + (dx * dx + dy * dy) * .5;\n\n      if (adx > ady) {\n        newEdge.a = 1;\n        newEdge.b = dy / dx;\n        newEdge.c /= dx;\n      } else {\n        newEdge.b = 1;\n        newEdge.a = dx / dy;\n        newEdge.c /= dy;\n      }\n\n      return newEdge;\n    },\n\n    intersect: function(el1, el2) {\n      var e1 = el1.edge,\n          e2 = el2.edge;\n      if (!e1 || !e2 || (e1.region.r == e2.region.r)) {\n        return null;\n      }\n      var d = (e1.a * e2.b) - (e1.b * e2.a);\n      if (Math.abs(d) < 1e-10) {\n        return null;\n      }\n      var xint = (e1.c * e2.b - e2.c * e1.b) / d,\n          yint = (e2.c * e1.a - e1.c * e2.a) / d,\n          e1r = e1.region.r,\n          e2r = e2.region.r,\n          el,\n          e;\n      if ((e1r.y < e2r.y) ||\n         (e1r.y == e2r.y && e1r.x < e2r.x)) {\n        el = el1;\n        e = e1;\n      } else {\n        el = el2;\n        e = e2;\n      }\n      var rightOfSite = (xint >= e.region.r.x);\n      if ((rightOfSite && (el.side === \"l\")) ||\n        (!rightOfSite && (el.side === \"r\"))) {\n        return null;\n      }\n      return {\n        x: xint,\n        y: yint\n      };\n    },\n\n    rightOf: function(he, p) {\n      var e = he.edge,\n          topsite = e.region.r,\n          rightOfSite = (p.x > topsite.x);\n\n      if (rightOfSite && (he.side === \"l\")) {\n        return 1;\n      }\n      if (!rightOfSite && (he.side === \"r\")) {\n        return 0;\n      }\n      if (e.a === 1) {\n        var dyp = p.y - topsite.y,\n            dxp = p.x - topsite.x,\n            fast = 0,\n            above = 0;\n\n        if ((!rightOfSite && (e.b < 0)) ||\n          (rightOfSite && (e.b >= 0))) {\n          above = fast = (dyp >= e.b * dxp);\n        } else {\n          above = ((p.x + p.y * e.b) > e.c);\n          if (e.b < 0) {\n            above = !above;\n          }\n          if (!above) {\n            fast = 1;\n          }\n        }\n        if (!fast) {\n          var dxs = topsite.x - e.region.l.x;\n          above = (e.b * (dxp * dxp - dyp * dyp)) <\n            (dxs * dyp * (1 + 2 * dxp / dxs + e.b * e.b));\n\n          if (e.b < 0) {\n            above = !above;\n          }\n        }\n      } else /* e.b == 1 */ {\n        var yl = e.c - e.a * p.x,\n            t1 = p.y - yl,\n            t2 = p.x - topsite.x,\n            t3 = yl - topsite.y;\n\n        above = (t1 * t1) > (t2 * t2 + t3 * t3);\n      }\n      return he.side === \"l\" ? above : !above;\n    },\n\n    endPoint: function(edge, side, site) {\n      edge.ep[side] = site;\n      if (!edge.ep[d3_voronoi_opposite[side]]) return;\n      callback(edge);\n    },\n\n    distance: function(s, t) {\n      var dx = s.x - t.x,\n          dy = s.y - t.y;\n      return Math.sqrt(dx * dx + dy * dy);\n    }\n  };\n\n  var EventQueue = {\n    list: [],\n\n    insert: function(he, site, offset) {\n      he.vertex = site;\n      he.ystar = site.y + offset;\n      for (var i=0, list=EventQueue.list, l=list.length; i<l; i++) {\n        var next = list[i];\n        if (he.ystar > next.ystar ||\n          (he.ystar == next.ystar &&\n          site.x > next.vertex.x)) {\n          continue;\n        } else {\n          break;\n        }\n      }\n      list.splice(i, 0, he);\n    },\n\n    del: function(he) {\n      for (var i=0, ls=EventQueue.list, l=ls.length; i<l && (ls[i] != he); ++i) {}\n      ls.splice(i, 1);\n    },\n\n    empty: function() { return EventQueue.list.length === 0; },\n\n    nextEvent: function(he) {\n      for (var i=0, ls=EventQueue.list, l=ls.length; i<l; ++i) {\n        if (ls[i] == he) return ls[i+1];\n      }\n      return null;\n    },\n\n    min: function() {\n      var elem = EventQueue.list[0];\n      return {\n        x: elem.vertex.x,\n        y: elem.ystar\n      };\n    },\n\n    extractMin: function() {\n      return EventQueue.list.shift();\n    }\n  };\n\n  EdgeList.init();\n  Sites.bottomSite = Sites.list.shift();\n\n  var newSite = Sites.list.shift(), newIntStar;\n  var lbnd, rbnd, llbnd, rrbnd, bisector;\n  var bot, top, temp, p, v;\n  var e, pm;\n\n  while (true) {\n    if (!EventQueue.empty()) {\n      newIntStar = EventQueue.min();\n    }\n    if (newSite && (EventQueue.empty()\n      || newSite.y < newIntStar.y\n      || (newSite.y == newIntStar.y\n      && newSite.x < newIntStar.x))) { //new site is smallest\n      lbnd = EdgeList.leftBound(newSite);\n      rbnd = EdgeList.right(lbnd);\n      bot = EdgeList.rightRegion(lbnd);\n      e = Geom.bisect(bot, newSite);\n      bisector = EdgeList.createHalfEdge(e, \"l\");\n      EdgeList.insert(lbnd, bisector);\n      p = Geom.intersect(lbnd, bisector);\n      if (p) {\n        EventQueue.del(lbnd);\n        EventQueue.insert(lbnd, p, Geom.distance(p, newSite));\n      }\n      lbnd = bisector;\n      bisector = EdgeList.createHalfEdge(e, \"r\");\n      EdgeList.insert(lbnd, bisector);\n      p = Geom.intersect(bisector, rbnd);\n      if (p) {\n        EventQueue.insert(bisector, p, Geom.distance(p, newSite));\n      }\n      newSite = Sites.list.shift();\n    } else if (!EventQueue.empty()) { //intersection is smallest\n      lbnd = EventQueue.extractMin();\n      llbnd = EdgeList.left(lbnd);\n      rbnd = EdgeList.right(lbnd);\n      rrbnd = EdgeList.right(rbnd);\n      bot = EdgeList.leftRegion(lbnd);\n      top = EdgeList.rightRegion(rbnd);\n      v = lbnd.vertex;\n      Geom.endPoint(lbnd.edge, lbnd.side, v);\n      Geom.endPoint(rbnd.edge, rbnd.side, v);\n      EdgeList.del(lbnd);\n      EventQueue.del(rbnd);\n      EdgeList.del(rbnd);\n      pm = \"l\";\n      if (bot.y > top.y) {\n        temp = bot;\n        bot = top;\n        top = temp;\n        pm = \"r\";\n      }\n      e = Geom.bisect(bot, top);\n      bisector = EdgeList.createHalfEdge(e, pm);\n      EdgeList.insert(llbnd, bisector);\n      Geom.endPoint(e, d3_voronoi_opposite[pm], v);\n      p = Geom.intersect(llbnd, bisector);\n      if (p) {\n        EventQueue.del(llbnd);\n        EventQueue.insert(llbnd, p, Geom.distance(p, bot));\n      }\n      p = Geom.intersect(bisector, rrbnd);\n      if (p) {\n        EventQueue.insert(bisector, p, Geom.distance(p, bot));\n      }\n    } else {\n      break;\n    }\n  }//end while\n\n  for (lbnd = EdgeList.right(EdgeList.leftEnd);\n      lbnd != EdgeList.rightEnd;\n      lbnd = EdgeList.right(lbnd)) {\n    callback(lbnd.edge);\n  }\n}\n/**\n* @param vertices [[x1, y1], [x2, y2], …]\n* @returns triangles [[[x1, y1], [x2, y2], [x3, y3]], …]\n */\nd3.geom.delaunay = function(vertices) {\n  var edges = vertices.map(function() { return []; }),\n      triangles = [];\n\n  // Use the Voronoi tessellation to determine Delaunay edges.\n  d3_voronoi_tessellate(vertices, function(e) {\n    edges[e.region.l.index].push(vertices[e.region.r.index]);\n  });\n\n  // Reconnect the edges into counterclockwise triangles.\n  edges.forEach(function(edge, i) {\n    var v = vertices[i],\n        cx = v[0],\n        cy = v[1];\n    edge.forEach(function(v) {\n      v.angle = Math.atan2(v[0] - cx, v[1] - cy);\n    });\n    edge.sort(function(a, b) {\n      return a.angle - b.angle;\n    });\n    for (var j = 0, m = edge.length - 1; j < m; j++) {\n      triangles.push([v, edge[j], edge[j + 1]]);\n    }\n  });\n\n  return triangles;\n};\n// Constructs a new quadtree for the specified array of points. A quadtree is a\n// two-dimensional recursive spatial subdivision. This implementation uses\n// square partitions, dividing each square into four equally-sized squares. Each\n// point exists in a unique node; if multiple points are in the same position,\n// some points may be stored on internal nodes rather than leaf nodes. Quadtrees\n// can be used to accelerate various spatial operations, such as the Barnes-Hut\n// approximation for computing n-body forces, or collision detection.\nd3.geom.quadtree = function(points, x1, y1, x2, y2) {\n  var p,\n      i = -1,\n      n = points.length;\n\n  // Type conversion for deprecated API.\n  if (n && isNaN(points[0].x)) points = points.map(d3_geom_quadtreePoint);\n\n  // Allow bounds to be specified explicitly.\n  if (arguments.length < 5) {\n    if (arguments.length === 3) {\n      y2 = x2 = y1;\n      y1 = x1;\n    } else {\n      x1 = y1 = Infinity;\n      x2 = y2 = -Infinity;\n\n      // Compute bounds.\n      while (++i < n) {\n        p = points[i];\n        if (p.x < x1) x1 = p.x;\n        if (p.y < y1) y1 = p.y;\n        if (p.x > x2) x2 = p.x;\n        if (p.y > y2) y2 = p.y;\n      }\n\n      // Squarify the bounds.\n      var dx = x2 - x1,\n          dy = y2 - y1;\n      if (dx > dy) y2 = y1 + dx;\n      else x2 = x1 + dy;\n    }\n  }\n\n  // Recursively inserts the specified point p at the node n or one of its\n  // descendants. The bounds are defined by [x1, x2] and [y1, y2].\n  function insert(n, p, x1, y1, x2, y2) {\n    if (isNaN(p.x) || isNaN(p.y)) return; // ignore invalid points\n    if (n.leaf) {\n      var v = n.point;\n      if (v) {\n        // If the point at this leaf node is at the same position as the new\n        // point we are adding, we leave the point associated with the\n        // internal node while adding the new point to a child node. This\n        // avoids infinite recursion.\n        if ((Math.abs(v.x - p.x) + Math.abs(v.y - p.y)) < .01) {\n          insertChild(n, p, x1, y1, x2, y2);\n        } else {\n          n.point = null;\n          insertChild(n, v, x1, y1, x2, y2);\n          insertChild(n, p, x1, y1, x2, y2);\n        }\n      } else {\n        n.point = p;\n      }\n    } else {\n      insertChild(n, p, x1, y1, x2, y2);\n    }\n  }\n\n  // Recursively inserts the specified point p into a descendant of node n. The\n  // bounds are defined by [x1, x2] and [y1, y2].\n  function insertChild(n, p, x1, y1, x2, y2) {\n    // Compute the split point, and the quadrant in which to insert p.\n    var sx = (x1 + x2) * .5,\n        sy = (y1 + y2) * .5,\n        right = p.x >= sx,\n        bottom = p.y >= sy,\n        i = (bottom << 1) + right;\n\n    // Recursively insert into the child node.\n    n.leaf = false;\n    n = n.nodes[i] || (n.nodes[i] = d3_geom_quadtreeNode());\n\n    // Update the bounds as we recurse.\n    if (right) x1 = sx; else x2 = sx;\n    if (bottom) y1 = sy; else y2 = sy;\n    insert(n, p, x1, y1, x2, y2);\n  }\n\n  // Create the root node.\n  var root = d3_geom_quadtreeNode();\n\n  root.add = function(p) {\n    insert(root, p, x1, y1, x2, y2);\n  };\n\n  root.visit = function(f) {\n    d3_geom_quadtreeVisit(f, root, x1, y1, x2, y2);\n  };\n\n  // Insert all points.\n  points.forEach(root.add);\n  return root;\n};\n\nfunction d3_geom_quadtreeNode() {\n  return {\n    leaf: true,\n    nodes: [],\n    point: null\n  };\n}\n\nfunction d3_geom_quadtreeVisit(f, node, x1, y1, x2, y2) {\n  if (!f(node, x1, y1, x2, y2)) {\n    var sx = (x1 + x2) * .5,\n        sy = (y1 + y2) * .5,\n        children = node.nodes;\n    if (children[0]) d3_geom_quadtreeVisit(f, children[0], x1, y1, sx, sy);\n    if (children[1]) d3_geom_quadtreeVisit(f, children[1], sx, y1, x2, sy);\n    if (children[2]) d3_geom_quadtreeVisit(f, children[2], x1, sy, sx, y2);\n    if (children[3]) d3_geom_quadtreeVisit(f, children[3], sx, sy, x2, y2);\n  }\n}\n\nfunction d3_geom_quadtreePoint(p) {\n  return {\n    x: p[0],\n    y: p[1]\n  };\n}\nd3.time = {};\n\nvar d3_time = Date;\n\nfunction d3_time_utc() {\n  this._ = new Date(arguments.length > 1\n      ? Date.UTC.apply(this, arguments)\n      : arguments[0]);\n}\n\nd3_time_utc.prototype = {\n  getDate: function() { return this._.getUTCDate(); },\n  getDay: function() { return this._.getUTCDay(); },\n  getFullYear: function() { return this._.getUTCFullYear(); },\n  getHours: function() { return this._.getUTCHours(); },\n  getMilliseconds: function() { return this._.getUTCMilliseconds(); },\n  getMinutes: function() { return this._.getUTCMinutes(); },\n  getMonth: function() { return this._.getUTCMonth(); },\n  getSeconds: function() { return this._.getUTCSeconds(); },\n  getTime: function() { return this._.getTime(); },\n  getTimezoneOffset: function() { return 0; },\n  valueOf: function() { return this._.valueOf(); },\n  setDate: function() { d3_time_prototype.setUTCDate.apply(this._, arguments); },\n  setDay: function() { d3_time_prototype.setUTCDay.apply(this._, arguments); },\n  setFullYear: function() { d3_time_prototype.setUTCFullYear.apply(this._, arguments); },\n  setHours: function() { d3_time_prototype.setUTCHours.apply(this._, arguments); },\n  setMilliseconds: function() { d3_time_prototype.setUTCMilliseconds.apply(this._, arguments); },\n  setMinutes: function() { d3_time_prototype.setUTCMinutes.apply(this._, arguments); },\n  setMonth: function() { d3_time_prototype.setUTCMonth.apply(this._, arguments); },\n  setSeconds: function() { d3_time_prototype.setUTCSeconds.apply(this._, arguments); },\n  setTime: function() { d3_time_prototype.setTime.apply(this._, arguments); }\n};\n\nvar d3_time_prototype = Date.prototype;\nd3.time.format = function(template) {\n  var n = template.length;\n\n  function format(date) {\n    var string = [],\n        i = -1,\n        j = 0,\n        c,\n        f;\n    while (++i < n) {\n      if (template.charCodeAt(i) == 37) {\n        string.push(\n            template.substring(j, i),\n            (f = d3_time_formats[c = template.charAt(++i)])\n            ? f(date) : c);\n        j = i + 1;\n      }\n    }\n    string.push(template.substring(j, i));\n    return string.join(\"\");\n  }\n\n  format.parse = function(string) {\n    var d = {y: 1900, m: 0, d: 1, H: 0, M: 0, S: 0, L: 0},\n        i = d3_time_parse(d, template, string, 0);\n    if (i != string.length) return null;\n\n    // The am-pm flag is 0 for AM, and 1 for PM.\n    if (\"p\" in d) d.H = d.H % 12 + d.p * 12;\n\n    var date = new d3_time();\n    date.setFullYear(d.y, d.m, d.d);\n    date.setHours(d.H, d.M, d.S, d.L);\n    return date;\n  };\n\n  format.toString = function() {\n    return template;\n  };\n\n  return format;\n};\n\nfunction d3_time_parse(date, template, string, j) {\n  var c,\n      p,\n      i = 0,\n      n = template.length,\n      m = string.length;\n  while (i < n) {\n    if (j >= m) return -1;\n    c = template.charCodeAt(i++);\n    if (c == 37) {\n      p = d3_time_parsers[template.charAt(i++)];\n      if (!p || ((j = p(date, string, j)) < 0)) return -1;\n    } else if (c != string.charCodeAt(j++)) {\n      return -1;\n    }\n  }\n  return j;\n}\n\nvar d3_time_zfill2 = d3.format(\"02d\"),\n    d3_time_zfill3 = d3.format(\"03d\"),\n    d3_time_zfill4 = d3.format(\"04d\"),\n    d3_time_sfill2 = d3.format(\"2d\");\n\nvar d3_time_formats = {\n  a: function(d) { return d3_time_weekdays[d.getDay()].substring(0, 3); },\n  A: function(d) { return d3_time_weekdays[d.getDay()]; },\n  b: function(d) { return d3_time_months[d.getMonth()].substring(0, 3); },\n  B: function(d) { return d3_time_months[d.getMonth()]; },\n  c: d3.time.format(\"%a %b %e %H:%M:%S %Y\"),\n  d: function(d) { return d3_time_zfill2(d.getDate()); },\n  e: function(d) { return d3_time_sfill2(d.getDate()); },\n  H: function(d) { return d3_time_zfill2(d.getHours()); },\n  I: function(d) { return d3_time_zfill2(d.getHours() % 12 || 12); },\n  j: function(d) { return d3_time_zfill3(1 + d3.time.dayOfYear(d)); },\n  L: function(d) { return d3_time_zfill3(d.getMilliseconds()); },\n  m: function(d) { return d3_time_zfill2(d.getMonth() + 1); },\n  M: function(d) { return d3_time_zfill2(d.getMinutes()); },\n  p: function(d) { return d.getHours() >= 12 ? \"PM\" : \"AM\"; },\n  S: function(d) { return d3_time_zfill2(d.getSeconds()); },\n  U: function(d) { return d3_time_zfill2(d3.time.sundayOfYear(d)); },\n  w: function(d) { return d.getDay(); },\n  W: function(d) { return d3_time_zfill2(d3.time.mondayOfYear(d)); },\n  x: d3.time.format(\"%m/%d/%y\"),\n  X: d3.time.format(\"%H:%M:%S\"),\n  y: function(d) { return d3_time_zfill2(d.getFullYear() % 100); },\n  Y: function(d) { return d3_time_zfill4(d.getFullYear() % 10000); },\n  Z: d3_time_zone,\n  \"%\": function(d) { return \"%\"; }\n};\n\nvar d3_time_parsers = {\n  a: d3_time_parseWeekdayAbbrev,\n  A: d3_time_parseWeekday,\n  b: d3_time_parseMonthAbbrev,\n  B: d3_time_parseMonth,\n  c: d3_time_parseLocaleFull,\n  d: d3_time_parseDay,\n  e: d3_time_parseDay,\n  H: d3_time_parseHour24,\n  I: d3_time_parseHour24,\n  // j: function(d, s, i) { /*TODO day of year [001,366] */ return i; },\n  L: d3_time_parseMilliseconds,\n  m: d3_time_parseMonthNumber,\n  M: d3_time_parseMinutes,\n  p: d3_time_parseAmPm,\n  S: d3_time_parseSeconds,\n  // U: function(d, s, i) { /*TODO week number (sunday) [00,53] */ return i; },\n  // w: function(d, s, i) { /*TODO weekday [0,6] */ return i; },\n  // W: function(d, s, i) { /*TODO week number (monday) [00,53] */ return i; },\n  x: d3_time_parseLocaleDate,\n  X: d3_time_parseLocaleTime,\n  y: d3_time_parseYear,\n  Y: d3_time_parseFullYear\n  // ,\n  // Z: function(d, s, i) { /*TODO time zone */ return i; },\n  // \"%\": function(d, s, i) { /*TODO literal % */ return i; }\n};\n\n// Note: weekday is validated, but does not set the date.\nfunction d3_time_parseWeekdayAbbrev(date, string, i) {\n  return d3_time_weekdayAbbrevRe.test(string.substring(i, i += 3)) ? i : -1;\n}\n\n// Note: weekday is validated, but does not set the date.\nfunction d3_time_parseWeekday(date, string, i) {\n  d3_time_weekdayRe.lastIndex = 0;\n  var n = d3_time_weekdayRe.exec(string.substring(i, i + 10));\n  return n ? i += n[0].length : -1;\n}\n\nvar d3_time_weekdayAbbrevRe = /^(?:sun|mon|tue|wed|thu|fri|sat)/i,\n    d3_time_weekdayRe = /^(?:Sunday|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday)/i;\n    d3_time_weekdays = [\"Sunday\", \"Monday\", \"Tuesday\", \"Wednesday\", \"Thursday\", \"Friday\", \"Saturday\"];\n\nfunction d3_time_parseMonthAbbrev(date, string, i) {\n  var n = d3_time_monthAbbrevLookup.get(string.substring(i, i += 3).toLowerCase());\n  return n == null ? -1 : (date.m = n, i);\n}\n\nvar d3_time_monthAbbrevLookup = d3.map({\n  jan: 0,\n  feb: 1,\n  mar: 2,\n  apr: 3,\n  may: 4,\n  jun: 5,\n  jul: 6,\n  aug: 7,\n  sep: 8,\n  oct: 9,\n  nov: 10,\n  dec: 11\n});\n\nfunction d3_time_parseMonth(date, string, i) {\n  d3_time_monthRe.lastIndex = 0;\n  var n = d3_time_monthRe.exec(string.substring(i, i + 12));\n  return n ? (date.m = d3_time_monthLookup.get(n[0].toLowerCase()), i += n[0].length) : -1;\n}\n\nvar d3_time_monthRe = /^(?:January|February|March|April|May|June|July|August|September|October|November|December)/ig;\n\nvar d3_time_monthLookup = d3.map({\n  january: 0,\n  february: 1,\n  march: 2,\n  april: 3,\n  may: 4,\n  june: 5,\n  july: 6,\n  august: 7,\n  september: 8,\n  october: 9,\n  november: 10,\n  december: 11\n});\n\nvar d3_time_months = [\n  \"January\",\n  \"February\",\n  \"March\",\n  \"April\",\n  \"May\",\n  \"June\",\n  \"July\",\n  \"August\",\n  \"September\",\n  \"October\",\n  \"November\",\n  \"December\"\n];\n\nfunction d3_time_parseLocaleFull(date, string, i) {\n  return d3_time_parse(date, d3_time_formats.c.toString(), string, i);\n}\n\nfunction d3_time_parseLocaleDate(date, string, i) {\n  return d3_time_parse(date, d3_time_formats.x.toString(), string, i);\n}\n\nfunction d3_time_parseLocaleTime(date, string, i) {\n  return d3_time_parse(date, d3_time_formats.X.toString(), string, i);\n}\n\nfunction d3_time_parseFullYear(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 4));\n  return n ? (date.y = +n[0], i += n[0].length) : -1;\n}\n\nfunction d3_time_parseYear(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 2));\n  return n ? (date.y = d3_time_century() + +n[0], i += n[0].length) : -1;\n}\n\nfunction d3_time_century() {\n  return ~~(new Date().getFullYear() / 1000) * 1000;\n}\n\nfunction d3_time_parseMonthNumber(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 2));\n  return n ? (date.m = n[0] - 1, i += n[0].length) : -1;\n}\n\nfunction d3_time_parseDay(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 2));\n  return n ? (date.d = +n[0], i += n[0].length) : -1;\n}\n\n// Note: we don't validate that the hour is in the range [0,23] or [1,12].\nfunction d3_time_parseHour24(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 2));\n  return n ? (date.H = +n[0], i += n[0].length) : -1;\n}\n\nfunction d3_time_parseMinutes(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 2));\n  return n ? (date.M = +n[0], i += n[0].length) : -1;\n}\n\nfunction d3_time_parseSeconds(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 2));\n  return n ? (date.S = +n[0], i += n[0].length) : -1;\n}\n\nfunction d3_time_parseMilliseconds(date, string, i) {\n  d3_time_numberRe.lastIndex = 0;\n  var n = d3_time_numberRe.exec(string.substring(i, i + 3));\n  return n ? (date.L = +n[0], i += n[0].length) : -1;\n}\n\n// Note: we don't look at the next directive.\nvar d3_time_numberRe = /\\s*\\d+/;\n\nfunction d3_time_parseAmPm(date, string, i) {\n  var n = d3_time_amPmLookup.get(string.substring(i, i += 2).toLowerCase());\n  return n == null ? -1 : (date.p = n, i);\n}\n\nvar d3_time_amPmLookup = d3.map({\n  am: 0,\n  pm: 1\n});\n\n// TODO table of time zone offset names?\nfunction d3_time_zone(d) {\n  var z = d.getTimezoneOffset(),\n      zs = z > 0 ? \"-\" : \"+\",\n      zh = ~~(Math.abs(z) / 60),\n      zm = Math.abs(z) % 60;\n  return zs + d3_time_zfill2(zh) + d3_time_zfill2(zm);\n}\nd3.time.format.utc = function(template) {\n  var local = d3.time.format(template);\n\n  function format(date) {\n    try {\n      d3_time = d3_time_utc;\n      var utc = new d3_time();\n      utc._ = date;\n      return local(utc);\n    } finally {\n      d3_time = Date;\n    }\n  }\n\n  format.parse = function(string) {\n    try {\n      d3_time = d3_time_utc;\n      var date = local.parse(string);\n      return date && date._;\n    } finally {\n      d3_time = Date;\n    }\n  };\n\n  format.toString = local.toString;\n\n  return format;\n};\nvar d3_time_formatIso = d3.time.format.utc(\"%Y-%m-%dT%H:%M:%S.%LZ\");\n\nd3.time.format.iso = Date.prototype.toISOString ? d3_time_formatIsoNative : d3_time_formatIso;\n\nfunction d3_time_formatIsoNative(date) {\n  return date.toISOString();\n}\n\nd3_time_formatIsoNative.parse = function(string) {\n  return new Date(string);\n};\n\nd3_time_formatIsoNative.toString = d3_time_formatIso.toString;\nfunction d3_time_interval(local, step, number) {\n\n  function round(date) {\n    var d0 = local(date), d1 = offset(d0, 1);\n    return date - d0 < d1 - date ? d0 : d1;\n  }\n\n  function ceil(date) {\n    step(date = local(new d3_time(date - 1)), 1);\n    return date;\n  }\n\n  function offset(date, k) {\n    step(date = new d3_time(+date), k);\n    return date;\n  }\n\n  function range(t0, t1, dt) {\n    var time = ceil(t0), times = [];\n    if (dt > 1) {\n      while (time < t1) {\n        if (!(number(time) % dt)) times.push(new Date(+time));\n        step(time, 1);\n      }\n    } else {\n      while (time < t1) times.push(new Date(+time)), step(time, 1);\n    }\n    return times;\n  }\n\n  function range_utc(t0, t1, dt) {\n    try {\n      d3_time = d3_time_utc;\n      var utc = new d3_time_utc();\n      utc._ = t0;\n      return range(utc, t1, dt);\n    } finally {\n      d3_time = Date;\n    }\n  }\n\n  local.floor = local;\n  local.round = round;\n  local.ceil = ceil;\n  local.offset = offset;\n  local.range = range;\n\n  var utc = local.utc = d3_time_interval_utc(local);\n  utc.floor = utc;\n  utc.round = d3_time_interval_utc(round);\n  utc.ceil = d3_time_interval_utc(ceil);\n  utc.offset = d3_time_interval_utc(offset);\n  utc.range = range_utc;\n\n  return local;\n}\n\nfunction d3_time_interval_utc(method) {\n  return function(date, k) {\n    try {\n      d3_time = d3_time_utc;\n      var utc = new d3_time_utc();\n      utc._ = date;\n      return method(utc, k)._;\n    } finally {\n      d3_time = Date;\n    }\n  };\n}\nd3.time.second = d3_time_interval(function(date) {\n  return new d3_time(Math.floor(date / 1e3) * 1e3);\n}, function(date, offset) {\n  date.setTime(date.getTime() + Math.floor(offset) * 1e3); // DST breaks setSeconds\n}, function(date) {\n  return date.getSeconds();\n});\n\nd3.time.seconds = d3.time.second.range;\nd3.time.seconds.utc = d3.time.second.utc.range;\nd3.time.minute = d3_time_interval(function(date) {\n  return new d3_time(Math.floor(date / 6e4) * 6e4);\n}, function(date, offset) {\n  date.setTime(date.getTime() + Math.floor(offset) * 6e4); // DST breaks setMinutes\n}, function(date) {\n  return date.getMinutes();\n});\n\nd3.time.minutes = d3.time.minute.range;\nd3.time.minutes.utc = d3.time.minute.utc.range;\nd3.time.hour = d3_time_interval(function(date) {\n  var timezone = date.getTimezoneOffset() / 60;\n  return new d3_time((Math.floor(date / 36e5 - timezone) + timezone) * 36e5);\n}, function(date, offset) {\n  date.setTime(date.getTime() + Math.floor(offset) * 36e5); // DST breaks setHours\n}, function(date) {\n  return date.getHours();\n});\n\nd3.time.hours = d3.time.hour.range;\nd3.time.hours.utc = d3.time.hour.utc.range;\nd3.time.day = d3_time_interval(function(date) {\n  return new d3_time(date.getFullYear(), date.getMonth(), date.getDate());\n}, function(date, offset) {\n  date.setDate(date.getDate() + offset);\n}, function(date) {\n  return date.getDate() - 1;\n});\n\nd3.time.days = d3.time.day.range;\nd3.time.days.utc = d3.time.day.utc.range;\n\nd3.time.dayOfYear = function(date) {\n  var year = d3.time.year(date);\n  return Math.floor((date - year) / 864e5 - (date.getTimezoneOffset() - year.getTimezoneOffset()) / 1440);\n};\nd3_time_weekdays.forEach(function(day, i) {\n  day = day.toLowerCase();\n  i = 7 - i;\n\n  var interval = d3.time[day] = d3_time_interval(function(date) {\n    (date = d3.time.day(date)).setDate(date.getDate() - (date.getDay() + i) % 7);\n    return date;\n  }, function(date, offset) {\n    date.setDate(date.getDate() + Math.floor(offset) * 7);\n  }, function(date) {\n    var day = d3.time.year(date).getDay();\n    return Math.floor((d3.time.dayOfYear(date) + (day + i) % 7) / 7) - (day !== i);\n  });\n\n  d3.time[day + \"s\"] = interval.range;\n  d3.time[day + \"s\"].utc = interval.utc.range;\n\n  d3.time[day + \"OfYear\"] = function(date) {\n    var day = d3.time.year(date).getDay();\n    return Math.floor((d3.time.dayOfYear(date) + (day + i) % 7) / 7);\n  };\n});\n\nd3.time.week = d3.time.sunday;\nd3.time.weeks = d3.time.sunday.range;\nd3.time.weeks.utc = d3.time.sunday.utc.range;\nd3.time.weekOfYear = d3.time.sundayOfYear;\nd3.time.month = d3_time_interval(function(date) {\n  return new d3_time(date.getFullYear(), date.getMonth(), 1);\n}, function(date, offset) {\n  date.setMonth(date.getMonth() + offset);\n}, function(date) {\n  return date.getMonth();\n});\n\nd3.time.months = d3.time.month.range;\nd3.time.months.utc = d3.time.month.utc.range;\nd3.time.year = d3_time_interval(function(date) {\n  return new d3_time(date.getFullYear(), 0, 1);\n}, function(date, offset) {\n  date.setFullYear(date.getFullYear() + offset);\n}, function(date) {\n  return date.getFullYear();\n});\n\nd3.time.years = d3.time.year.range;\nd3.time.years.utc = d3.time.year.utc.range;\nfunction d3_time_scale(linear, methods, format) {\n\n  function scale(x) {\n    return linear(x);\n  }\n\n  scale.invert = function(x) {\n    return d3_time_scaleDate(linear.invert(x));\n  };\n\n  scale.domain = function(x) {\n    if (!arguments.length) return linear.domain().map(d3_time_scaleDate);\n    linear.domain(x);\n    return scale;\n  };\n\n  scale.nice = function(m) {\n    var extent = d3_time_scaleExtent(scale.domain());\n    return scale.domain([m.floor(extent[0]), m.ceil(extent[1])]);\n  };\n\n  scale.ticks = function(m, k) {\n    var extent = d3_time_scaleExtent(scale.domain());\n    if (typeof m !== \"function\") {\n      var span = extent[1] - extent[0],\n          target = span / m,\n          i = d3.bisect(d3_time_scaleSteps, target);\n      if (i == d3_time_scaleSteps.length) return methods.year(extent, m);\n      if (!i) return linear.ticks(m).map(d3_time_scaleDate);\n      if (Math.log(target / d3_time_scaleSteps[i - 1]) < Math.log(d3_time_scaleSteps[i] / target)) --i;\n      m = methods[i];\n      k = m[1];\n      m = m[0].range;\n    }\n    return m(extent[0], new Date(+extent[1] + 1), k); // inclusive upper bound\n  };\n\n  scale.tickFormat = function() {\n    return format;\n  };\n\n  scale.copy = function() {\n    return d3_time_scale(linear.copy(), methods, format);\n  };\n\n  // TOOD expose d3_scale_linear_rebind?\n  return d3.rebind(scale, linear, \"range\", \"rangeRound\", \"interpolate\", \"clamp\");\n}\n\n// TODO expose d3_scaleExtent?\nfunction d3_time_scaleExtent(domain) {\n  var start = domain[0], stop = domain[domain.length - 1];\n  return start < stop ? [start, stop] : [stop, start];\n}\n\nfunction d3_time_scaleDate(t) {\n  return new Date(t);\n}\n\nfunction d3_time_scaleFormat(formats) {\n  return function(date) {\n    var i = formats.length - 1, f = formats[i];\n    while (!f[1](date)) f = formats[--i];\n    return f[0](date);\n  };\n}\n\nfunction d3_time_scaleSetYear(y) {\n  var d = new Date(y, 0, 1);\n  d.setFullYear(y); // Y2K fail\n  return d;\n}\n\nfunction d3_time_scaleGetYear(d) {\n  var y = d.getFullYear(),\n      d0 = d3_time_scaleSetYear(y),\n      d1 = d3_time_scaleSetYear(y + 1);\n  return y + (d - d0) / (d1 - d0);\n}\n\nvar d3_time_scaleSteps = [\n  1e3,    // 1-second\n  5e3,    // 5-second\n  15e3,   // 15-second\n  3e4,    // 30-second\n  6e4,    // 1-minute\n  3e5,    // 5-minute\n  9e5,    // 15-minute\n  18e5,   // 30-minute\n  36e5,   // 1-hour\n  108e5,  // 3-hour\n  216e5,  // 6-hour\n  432e5,  // 12-hour\n  864e5,  // 1-day\n  1728e5, // 2-day\n  6048e5, // 1-week\n  2592e6, // 1-month\n  7776e6, // 3-month\n  31536e6 // 1-year\n];\n\nvar d3_time_scaleLocalMethods = [\n  [d3.time.second, 1],\n  [d3.time.second, 5],\n  [d3.time.second, 15],\n  [d3.time.second, 30],\n  [d3.time.minute, 1],\n  [d3.time.minute, 5],\n  [d3.time.minute, 15],\n  [d3.time.minute, 30],\n  [d3.time.hour, 1],\n  [d3.time.hour, 3],\n  [d3.time.hour, 6],\n  [d3.time.hour, 12],\n  [d3.time.day, 1],\n  [d3.time.day, 2],\n  [d3.time.week, 1],\n  [d3.time.month, 1],\n  [d3.time.month, 3],\n  [d3.time.year, 1]\n];\n\nvar d3_time_scaleLocalFormats = [\n  [d3.time.format(\"%Y\"), function(d) { return true; }],\n  [d3.time.format(\"%B\"), function(d) { return d.getMonth(); }],\n  [d3.time.format(\"%b %d\"), function(d) { return d.getDate() != 1; }],\n  [d3.time.format(\"%a %d\"), function(d) { return d.getDay() && d.getDate() != 1; }],\n  [d3.time.format(\"%I %p\"), function(d) { return d.getHours(); }],\n  [d3.time.format(\"%I:%M\"), function(d) { return d.getMinutes(); }],\n  [d3.time.format(\":%S\"), function(d) { return d.getSeconds(); }],\n  [d3.time.format(\".%L\"), function(d) { return d.getMilliseconds(); }]\n];\n\nvar d3_time_scaleLinear = d3.scale.linear(),\n    d3_time_scaleLocalFormat = d3_time_scaleFormat(d3_time_scaleLocalFormats);\n\nd3_time_scaleLocalMethods.year = function(extent, m) {\n  return d3_time_scaleLinear.domain(extent.map(d3_time_scaleGetYear)).ticks(m).map(d3_time_scaleSetYear);\n};\n\nd3.time.scale = function() {\n  return d3_time_scale(d3.scale.linear(), d3_time_scaleLocalMethods, d3_time_scaleLocalFormat);\n};\nvar d3_time_scaleUTCMethods = d3_time_scaleLocalMethods.map(function(m) {\n  return [m[0].utc, m[1]];\n});\n\nvar d3_time_scaleUTCFormats = [\n  [d3.time.format.utc(\"%Y\"), function(d) { return true; }],\n  [d3.time.format.utc(\"%B\"), function(d) { return d.getUTCMonth(); }],\n  [d3.time.format.utc(\"%b %d\"), function(d) { return d.getUTCDate() != 1; }],\n  [d3.time.format.utc(\"%a %d\"), function(d) { return d.getUTCDay() && d.getUTCDate() != 1; }],\n  [d3.time.format.utc(\"%I %p\"), function(d) { return d.getUTCHours(); }],\n  [d3.time.format.utc(\"%I:%M\"), function(d) { return d.getUTCMinutes(); }],\n  [d3.time.format.utc(\":%S\"), function(d) { return d.getUTCSeconds(); }],\n  [d3.time.format.utc(\".%L\"), function(d) { return d.getUTCMilliseconds(); }]\n];\n\nvar d3_time_scaleUTCFormat = d3_time_scaleFormat(d3_time_scaleUTCFormats);\n\nfunction d3_time_scaleUTCSetYear(y) {\n  var d = new Date(Date.UTC(y, 0, 1));\n  d.setUTCFullYear(y); // Y2K fail\n  return d;\n}\n\nfunction d3_time_scaleUTCGetYear(d) {\n  var y = d.getUTCFullYear(),\n      d0 = d3_time_scaleUTCSetYear(y),\n      d1 = d3_time_scaleUTCSetYear(y + 1);\n  return y + (d - d0) / (d1 - d0);\n}\n\nd3_time_scaleUTCMethods.year = function(extent, m) {\n  return d3_time_scaleLinear.domain(extent.map(d3_time_scaleUTCGetYear)).ticks(m).map(d3_time_scaleUTCSetYear);\n};\n\nd3.time.scale.utc = function() {\n  return d3_time_scale(d3.scale.linear(), d3_time_scaleUTCMethods, d3_time_scaleUTCFormat);\n};\n})();\n\n        /* END contents of d3.v2.js */\n\n        svRawData = {\n\t\"\": {\n\t\t\"svUnique\": 0,\n\t\t\"svTotal\": 355,\n\t\t\"svChildren\": {\n\t\t\t\"0x80b5713\": {\n\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\"svTotal\": 5,\n\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\"0x8391f3a\": {\n\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\"svTotal\": 5,\n\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\"0x8265952\": {\n\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\"svTotal\": 5,\n\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\"0x8264ec6\": {\n\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\"svTotal\": 5,\n\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\"0x82a0e64\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 5,\n\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"0x836cedf\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0x8355ff5\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0x8351dc9\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0x837c9fa\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0x8351e87\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0xfea85e97\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0xfea821d6\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0xfeab5cc5\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0x835220f\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0x837c97e\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0xfea436ea\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0xfea43586\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0xfea43359\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0xfea8d7f8\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0xfeab5535\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0x83562aa\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"0x836d536\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0x836bc42\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0x83766b6\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0x8375c66\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0x836be9e\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0x83766b6\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0x837519b\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0x8372ab4\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0x8371afc\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"0xfffffd7fff1b250d\": {\n\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\"svChildren\": {}\n\t\t\t},\n\t\t\t\"0xfffffd7fff2542fa\": {\n\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\"0xfffffd7fff2407be\": {\n\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\"0xfffffd7fff24044b\": {\n\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\"0xfffffd7fff24d5f6\": {\n\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\"0x6b3602\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"0x6aa0ca\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0x6a9df7\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0x6d06ba\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0xfffffd7fff1b5f7d\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0x6a9f21\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0x6d8f2e\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0xfffffd7fff1b2501\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0xfffffd7fff1c88ac\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0xfffffd7fff1c882c\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0xfffffd7fff3bf9fe\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0xfffffd7fff3bf881\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0xfffffd7ffa9d9649\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0xfffffd7fff2e0030\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0xfffffd7fff3b14c2\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"0xfffffd7fff3cf060\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"libc.so.1`__pollsys\": {\n\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\"libc.so.1`sigacthandler\": {\n\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\"libc.so.1`call_user_handler\": {\n\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\"libc.so.1`__sighndlr\": {\n\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\"postgres`reaper\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`pgstat_start\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`PgstatCollectorMain.isra.20\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libsocket.so.1`recv\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`__so_recv\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`WaitLatchOrSocket\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`poll\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`__pollsys\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\t\"postgres`_start\": {\n\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\"svTotal\": 344,\n\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\"postgres`main\": {\n\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\"svTotal\": 344,\n\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\"postgres`PostmasterMain\": {\n\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\"svTotal\": 344,\n\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\"postgres`ServerLoop\": {\n\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\"svTotal\": 343,\n\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`fork\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 6,\n\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`__forkx\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 6,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 6,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`select\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 5,\n\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`pselect\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`__pollsys\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`sigacthandler\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`call_user_handler\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`__sighndlr\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`reaper\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`pgstat_start\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`PgstatCollectorMain.isra.19\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libsocket.so.1`recv\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`__so_recv\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`sigusr1_handler\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`StartAutoVacWorker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`fork\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`__forkx\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`fork_process\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`fork\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`__forkx\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\"postgres`PostgresMain\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 330,\n\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`memset\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`strlcpy\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`CompleteCachedPlan\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`CreateTemplateTupleDesc\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`extract_query_dependencies\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`expression_tree_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`query_tree_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`expression_tree_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`CreateCachedPlan\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copySelectStmt\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyList.isra.15\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyRangeVar\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`copyObject\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`check_stack_depth\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`CreatePortal\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`AllocSetContextCreate\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`strcpy\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`GetPortalByName\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`hash_search\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`PortalDrop\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`hash_search_with_hash_value\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`GetCachedPlan\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 155,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ActiveSnapshotSet\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`BuildCachedPlan\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 154,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyList.isra.15\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 16,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyPlannedStmt\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 9,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyList.isra.15\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyRangeTblEntry\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`copyObject\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyList.isra.15\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyValue\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`MemoryContextAllocZeroAligned\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`AllocSetAlloc\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`copyObject\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 8,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`CopyPlanFields\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 7,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyList.isra.15\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyTargetEntry\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`MemoryContextAllocZeroAligned\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`AllocSetAlloc\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyWindowAgg\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`CopyPlanFields\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyIndexScan\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`CopyScanFields\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`CopyPlanFields\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyList.isra.15\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyTargetEntry\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`MemoryContextAllocZeroAligned\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`AllocSetAlloc\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`copyObject\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyList.isra.15\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`copyObject\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyList.isra.15\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyTargetEntry\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyConst\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`datumCopy\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`datumGetSize\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyQuery\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 6,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyList.isra.15\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyRangeTblEntry\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`copyObject\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyList.isra.15\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyValue\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`strlen\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`0x4f5de8\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyValue\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyTargetEntry\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`memcpy\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`MemoryContextAllocZeroAligned\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`AllocSetAlloc\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`copyObject\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`copyObject\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`copyObject\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`copyObject\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`pg_plan_queries\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 137,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`pg_plan_query\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 136,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`standard_planner\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 136,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`set_plan_refs\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 7,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`set_dummy_tlist_references.isra.2\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`exprType\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`lappend\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`new_tail_cell.isra.2\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`set_plan_refs\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`set_plan_refs\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`fix_scan_expr\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`expression_tree_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`set_upper_references\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`build_tlist_index\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`fix_upper_expr_mutator\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`search_indexed_tlist_for_var\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`MemoryContextAlloc\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`subquery_planner\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 129,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`expand_inherited_tables\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`has_subclass\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`SearchCatCache\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`grouping_planner\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 123,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyList.isra.15\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 8,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyTargetEntry\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 7,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyWindowFunc\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyList.isra.15\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyConst\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`MemoryContextAllocZeroAligned\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`copyObject\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`AllocSetAlloc\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`MemoryContextAllocZeroAligned\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`AllocSetAlloc\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`copyObject\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`add_to_flat_tlist\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`copyObject\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`MemoryContextAllocZeroAligned\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`AllocSetAlloc\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`lappend\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`new_tail_cell.isra.2\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`AllocSetAlloc\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`tlist_member\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`build_base_rel_tlists\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`create_plan\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`create_plan_recurse\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`build_physical_tlist\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`makeTargetEntry\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`AllocSetAlloc\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`find_window_functions\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`expression_tree_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`expression_tree_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`check_stack_depth\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`lappend\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`new_list\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`MemoryContextAlloc\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`list_copy\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`make_windowagg\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`add_tlist_costs_to_plan\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`cost_qual_eval\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`cost_qual_eval_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`cost_qual_eval_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`check_stack_depth\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`pull_var_clause\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`expression_tree_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`expression_tree_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`check_stack_depth\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`pull_var_clause_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`lappend\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`AllocSetAlloc\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`query_planner\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 101,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`MemoryContextAllocZero\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`add_base_rels_to_query\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 64,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`build_simple_rel\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 63,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyList.isra.15\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`get_relation_info\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 13,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 60,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`MemoryContextAlloc\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`MemoryContextAllocZeroAligned\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_copyList.isra.15\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`copyObject\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`MemoryContextAllocZeroAligned\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`estimate_rel_size\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 20,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`get_rel_data_width\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`get_attavgwidth\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`SearchCatCache\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`mdnblocks\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 17,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_mdnblocks.isra.1\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 16,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`lseek\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 15,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 15,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`FileSeek\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`heap_open\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`relation_open\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`RelationIdGetRelation\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`hash_search_with_hash_value\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`index_can_return\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`index_open\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 17,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`relation_open\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 17,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`LockRelationOid\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 10,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`LockAcquireExtended\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 7,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`AllocSetAlloc\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`hash_search\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`hash_any\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`hash_search_with_hash_value\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ReceiveSharedInvalidMessages\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`SIGetDataEntries\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`RecoveryInProgress\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`RelationIdGetRelation\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 6,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`RelationIncrementReferenceCount\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`hash_search_with_hash_value\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`lcons\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`new_list\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`AllocSetAlloc\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`list_free_private\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`AllocSetFree\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`smgrnblocks\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`lappend\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`smgrnblocks\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`build_base_rel_tlists\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`pull_var_clause\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`expression_tree_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`pull_var_clause_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`lappend\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`new_tail_cell.isra.2\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`AllocSetAlloc\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`deconstruct_jointree\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`deconstruct_recurse\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`distribute_qual_to_rels\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`process_equivalence\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`add_eq_member\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`get_cheapest_fractional_path_for_pathkeys\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`make_one_rel\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 31,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`set_baserel_size_estimates\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`set_rel_pathlist\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 14,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`create_index_paths\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 12,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`choose_bitmap_and\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`lcons\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`new_list\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`AllocSetAlloc\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`create_bitmap_heap_path\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`get_tablespace_page_costs\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`get_index_paths\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 7,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`bms_is_subset\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`build_index_paths\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 6,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`build_index_pathkeys\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`make_pathkey_from_sortinfo\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`get_mergejoin_opfamilies\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`SearchCatCacheList\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`oideq\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`create_index_path\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`cost_index\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`OidFunctionCall7Coll\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`btcostestimate\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`genericcostestimate\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`add_predicate_to_quals.isra.3\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`predicate_implied_by_recurse\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`SearchSysCache\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`lappend\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`new_list\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`AllocSetAlloc\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`pull_varattnos\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`expression_tree_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`pull_varattnos_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`bms_add_member\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`bms_make_singleton\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`pull_varattnos_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`match_clauses_to_index\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`match_clause_to_index\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`SearchSysCacheExists\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`SearchCatCache\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`CatalogCacheComputeHashValue\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`hashchar\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`create_seqscan_path\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`MemoryContextAllocZeroAligned\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`AllocSetAlloc\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`create_tidscan_paths\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`set_rel_size\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 16,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`check_partial_indexes\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`predicate_implied_by_recurse\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`predicate_implied_by_recurse\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`list_member_strip\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`predicate_implied_by_recurse\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`op_strict\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`get_opcode\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`SearchCatCache\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`CatalogCacheComputeHashValue\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`hashoid\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`set_baserel_size_estimates\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`clauselist_selectivity\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`clause_selectivity\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`restriction_selectivity\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`OidFunctionCall4Coll\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`eqsel\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libm.so.2`floor\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`get_restriction_variable\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`has_unique_index\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`var_eq_const\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`FunctionCall2Coll\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`texteq\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`nlikesel\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`patternsel\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`mcv_selectivity\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`FunctionCall2Coll\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`textlike\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`set_rel_width\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 6,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`get_attavgwidth\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`SearchCatCache\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`CatalogCacheComputeHashValue\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`DirectFunctionCall1Coll\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`booleq\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`nocachegetattr\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`systable_beginscan\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`index_beginscan\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`btbeginscan\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`make_rel_from_joinlist\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`tlist_member\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`preprocess_expression\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`eval_const_expressions\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`eval_const_expressions_mutator\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`simplify_function\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`evaluate_expr\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecEvalExprSwitchContext\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecEvalFunc\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`fmgr_info_cxt\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecMakeFunctionResult\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`MemoryContextDelete\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`AllocSetDelete\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libumem.so.1`free\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libumem.so.1`process_free\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libumem.so.1`umem_cache_free\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`preprocess_qual_conditions\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`preprocess_expression\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`find_duplicate_ors\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`planner\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`MemoryContextDelete\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`MemoryContextDeleteChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`MemoryContextReset\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`AllocSetReset\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libumem.so.1`free\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`___errno\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`PortalRun\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 47,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`snprintf\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`_ndoprnt\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`FillPortalStore\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 13,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`PortalRunMulti\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 13,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ProcessQuery\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 13,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`standard_ExecutorRun\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 13,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecProcNode\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 13,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecModifyTable\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 13,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecInsertIndexTuples\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 8,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`index_insert\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 8,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`FunctionCall6Coll\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 8,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`btinsert\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 8,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_bt_doinsert\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 8,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_bt_check_unique\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 8,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_bt_isequal\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`FunctionCall2Coll\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`bttextcmp\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`memcmp\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`varstr_cmp\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`heap_hot_search\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`LWLockAcquire\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ReadBufferExtended\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ReadBuffer_common\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`LWLockAcquire\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`PinBuffer\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecProcNode\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecScan\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`IndexNext\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`index_getnext\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`index_fetch_heap\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ReleaseAndReadBuffer\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`heap_hot_search_buffer\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`XidInMVCCSnapshot\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`index_getnext_tid\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`FunctionCall2Coll\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`btgettuple\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_bt_next\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_bt_steppage\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_bt_checkkeys\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`bms_first_member\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`PortalRunSelect\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 31,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`standard_ExecutorRun\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 31,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecProcNode\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 30,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecLimit\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 17,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecProcNode\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 17,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecWindowAgg\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 16,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`begin_partition\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 16,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecProcNode\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 16,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecScan\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 16,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecQual\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 8,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecEvalNullTest\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 8,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`slot_getattr\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 8,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`slot_deform_tuple\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 7,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 7,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`IndexNext\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`index_getnext\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`index_getnext_tid\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`FunctionCall2Coll\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`btgettuple\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_bt_first\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_bt_binsrch\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_bt_compare\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_bt_get_endpoint\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_bt_getroot\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_bt_getbuf\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`LWLockAcquire\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_bt_search\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_bt_getroot\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_bt_getbuf\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ReadBufferExtended\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ReadBuffer_common\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_bt_relandgetbuf\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ReadBufferExtended\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ReadBuffer_common\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`LWLockAcquire\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`SeqNext\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`heap_getnext\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`heapgettup_pagemode\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`heapgetpage\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`LockBuffer\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ReadBufferExtended\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ReadBuffer_common\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`hash_any\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`heap_page_prune_opt\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`spool_tuples\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecLockRows\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 6,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecProcNode\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 6,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecScan\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 6,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`IndexNext\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 6,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`index_getnext\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 6,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`index_fetch_heap\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ReadBufferExtended\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`PinBuffer\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`index_getnext_tid\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`FunctionCall2Coll\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`btgettuple\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_bt_next\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_bt_steppage\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_bt_readpage\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_bt_checkkeys\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`FunctionCall2Coll\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`toast_raw_datum_size\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecScan\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 7,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`IndexNext\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 7,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`index_getnext\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 7,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`LockBuffer\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`index_fetch_heap\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`HeapTupleIsSurelyDead\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ReleaseAndReadBuffer\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`index_getnext_tid\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`FunctionCall2Coll\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`btgettuple\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_bt_next\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_bt_steppage\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_bt_readpage\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_bt_checkkeys\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`btgettuple\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`printtup\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`heap_tuple_untoast_attr\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`toast_fetch_datum\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`systable_getnext_ordered\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`index_getnext\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`index_getnext_tid\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`FunctionCall2Coll\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`btgettuple\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_bt_first\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_bt_search\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`_bt_moveright\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`PortalStart\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 20,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`GetTransactionSnapshot\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`GetSnapshotData\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`standard_ExecutorStart\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 19,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecInitNode\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 18,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecInitLimit\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 18,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecAssignResultTypeFromTL\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecTypeFromTLInternal\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`TupleDescInitEntry\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`strncpy\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`SearchCatCache\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`namestrcpy\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecInitNode\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 15,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecInitSort\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecInitNode\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecInitWindowAgg\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecInitExpr\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecInitExpr\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`MemoryContextAllocZeroAligned\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`AllocSetAlloc\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecInitWindowAgg\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 14,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecAssignExprContext\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`CreateExprContext\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecAssignProjectionInfo\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecBuildProjectionInfo\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecAssignResultTypeFromTL\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecTypeFromTLInternal\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`TupleDescInitEntry\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`SearchCatCache\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`CatalogCacheComputeHashValue\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`DirectFunctionCall1Coll\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecInitNode\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 9,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecInitIndexScan\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 8,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecAssignResultTypeFromTL\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecTypeFromTLInternal\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`TupleDescInitEntry\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`SearchCatCache\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ResourceOwnerEnlargeCatCacheRefs\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`exprCollation\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecInitExpr\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecInitExpr\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`MemoryContextAllocZeroAligned\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`lappend\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`heap_open\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`relation_open\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`RelationIdGetRelation\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`hash_search_with_hash_value\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`pfree\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecInitSeqScan\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecAssignResultTypeFromTL\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecTypeFromTLInternal\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ReleaseCatCache\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`initialize_peragg.isra.0\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`memcpy\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`RegisterSnapshotOnOwner\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ResourceOwnerEnlargeSnapshots\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ReadyForQuery\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`pq_flush\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`internal_flush\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libsocket.so.1`send\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`__so_send\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`SendRowDescriptionMessage\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 6,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`appendBinaryStringInfo\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`getBaseTypeAndTypmod\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`SearchCatCache\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`CatalogCacheComputeHashValue\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`pq_sendint\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`appendBinaryStringInfo\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`enlargeStringInfo\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`SetCurrentStatementStartTimestamp\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`gettimeofday\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`0x4f6038\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`WalSenderMain\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`WaitLatchOrSocket\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`__read\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`check_variable_parameters\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`finish_xact_command\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 11,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`CommitTransactionCommand\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 11,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`AtEOXact_PgStat\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`CommitTransaction\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 10,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`AtCommit_Memory\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`MemoryContextDelete\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`AllocSetDelete\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libumem.so.1`free\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libumem.so.1`process_free\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`___errno\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`PreCommit_Portals\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 6,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`PortalDrop\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 6,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecutorFinish\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`PortalCleanup\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`standard_ExecutorEnd\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecEndBitmapHeapScan\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecEndBitmapIndexScan\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`index_endscan\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`FunctionCall1Coll\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`btendscan\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libumem.so.1`free\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libumem.so.1`process_free\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libumem.so.1`umem_free\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libumem.so.1`umem_cache_free\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecEndIndexScan\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`index_endscan\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`FunctionCall1Coll\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`btendscan\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libumem.so.1`free\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libumem.so.1`process_free\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libumem.so.1`umem_free\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`mutex_lock\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libumem.so.1`umem_cpu_reload\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`pfree\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecResetTupleTable\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExecClearTuple\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`RecordTransactionCommit\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`SyncRepWaitForLSN\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`WaitLatchOrSocket\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`poll\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`__pollsys\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`XLogFlush\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`XLogWrite\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`__write\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ResourceOwnerRelease\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ResourceOwnerReleaseInternal\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ProcReleaseLocks\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`LockReleaseAll\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`RemoveLocalLock\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`fmgr_info_cxt_security\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`getTypeInputInfo\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`SearchCatCache\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`parse_analyze_varparams\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 24,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`query_tree_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`expression_tree_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`check_parameter_resolution_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`expression_tree_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`transformStmt\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 22,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`coerce_to_specific_type\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`query_tree_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`assign_query_collations_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`assign_expr_collations\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`assign_collations_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`expression_tree_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`assign_collations_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`expression_tree_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`expression_tree_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`assign_collations_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`expression_tree_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`expression_tree_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`assign_collations_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`expression_tree_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`expression_tree_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`assign_collations_walker\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`get_typcollation\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`SearchCatCache\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`DirectFunctionCall1Coll\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`transformFromClause\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 8,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`transformFromClauseItem\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 8,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`addRangeTableEntry\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 7,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`MemoryContextStrdup\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`buildRelationAliases.isra.0\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`MemoryContextAllocZeroAligned\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`makeString\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`MemoryContextAllocZeroAligned\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`parserOpenTable\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`heap_openrv_extended\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`RangeVarGetRelidExtended\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`relation_open\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`RelationIdGetRelation\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ResourceOwnerEnlargeRelationRefs\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`hash_search_with_hash_value\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`relation_openrv_extended\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`RangeVarGetRelidExtended\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`LockRelationOid\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`LockAcquireExtended\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`hash_search_with_hash_value\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`isLockedRefname\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`transformLimitClause\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`coerce_to_specific_type\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`coerce_to_target_type\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`can_coerce_type\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`find_coercion_pathway\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`getBaseType\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`getBaseTypeAndTypmod\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`transformTargetList\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 6,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ExpandColumnRefStar\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`expandRelAttrs\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`expandRTE\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`expandTupleDesc.isra.1\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`markRTEForSelectPriv\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`transformTargetEntry\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`transformExpr\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ParseFuncOrColumn\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`func_get_detail\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`FuncnameGetCandidates\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`SearchCatCacheList\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ResourceOwnerEnlargeCatCacheListRefs\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`AllocSetAlloc\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`transformWhereClause\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`transformExpr\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`make_op\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 3,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`make_fn_arguments\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`coerce_type\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`new_list\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`oper\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`find_oper_cache_entry\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`hash_search\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`transformExpr\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`transformExpr\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`transformExpr\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`transformExpr\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`make_op\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`oper\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`strlcpy\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`find_oper_cache_entry\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`hash_search_with_hash_value\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`pg_any_to_server\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`pg_verify_mbstr\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`pg_verify_mbstr_len\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`pg_parse_query\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 18,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`raw_parser\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 18,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`base_yyparse\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 9,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 17,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`base_yylex\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ScanKeywordLookup\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`core_yylex\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`strcmp\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`ScanKeywordLookup\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`lcons\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`makeColumnRef\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 2,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`lcons\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`new_list\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`AllocSetAlloc\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`makeString\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`pgstat_report_stat\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 5,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`gettimeofday\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`pgstat_send\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libsocket.so.1`send\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`__so_send\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 4,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`pq_flush\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 9,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`internal_flush\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 9,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`_so_send\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libsocket.so.1`send\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 8,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`__so_send\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 8,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 8,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`pq_getbyte\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 10,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`pq_recvbuf\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 10,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`client_read_ended\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`secure_read\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 9,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libsocket.so.1`recv\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 9,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`__so_recv\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 9,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 9,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`pq_getmessage\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`sigsetjmp\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`pq_getmsgbytes\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`resetStringInfo\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\"postgres`SetCurrentStatementStartTimestamp\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\"postgres`pq_getmsgint\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\"postgres`StartChildProcess\": {\n\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\"postgres`AuxiliaryProcessMain\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`StartupProcessMain\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`StartupXLOG\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`HandleStartupProcInterrupts\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"postgres`PostmasterIsAlive\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 0,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"libc.so.1`__read\": {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svUnique\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svTotal\": 1,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"svChildren\": {}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n};\n\n        /* BEGIN contents of icicle.js */\n        /*\n * icicle.js: implements icicle visualization for stacks\n */\n\n/* Configuration */\nvar svSvgWidth = null;\t\t/* image width (null to auto-compute) */\nvar svSvgHeight = null;\t\t/* image height (null to auto-compute) */\nvar svAxisLabelWidth = 45;\t/* width of axis labels */\nvar svChartWidth = null;\t/* width of chart part of image */\nvar svChartHeight = null;\t/* height of chart part of image */\nvar svGrowDown = false;\t\t/* if true, stacks are drawn growing down */\nvar svTransitionTime = 2000;\t/* time for transition */\nvar svCornerPixels = 3;\t\t/* radius of rounded corners */\nvar svTextPaddingLeft = 5;\t/* padding-left on rectangle labels */\nvar svTextPaddingRight = 10;\t/* pading-right on rectangle labels */\nvar svTextPaddingTop = '1.2em';\t/* padding-top on rectangle labels */\nvar svColorMode = 'mono';\t/* coloring mode */\nvar svDetailMode = 'popout';\t/* detail display mode (\"zoom\" or \"popout\") */\n\n/* Program state */\nvar svRawData;\t\t\t/* raw data, filled in by wrapper code */\nvar svTooltipBox;\t\t/* tooltip box (D3 selection) */\nvar svPopoutBox;\t\t/* popout detail box (D3 selection) */\nvar svFlameGraph;\t\t/* main flame graph object */\nvar svContext = {\n\t'detailClose': svDetailClose,\n\t'detailOpen': svDetailOpen,\n\t'mouseout': function () {\n\t\tsvTooltipBox.text('').style('opacity', null);\n\t},\n\t'mouseover': function (d, det) {\n\t\tvar text, left, top;\n\n\t\t/* escape the key */\n\t\tsvTooltipBox.text(det['label']);\n\t\ttext = svTooltipBox.html();\n\n\t\ttext = '<strong>' + text + '</strong><br />';\n\t\ttext += '<strong>Top of stack</strong>: ' +\n\t\t    det['pctUnique'] + '% of all samples ' +\n\t\t    '(' + det['nunique'] + ' of ' +\n\t\t    det['nallsamples'] + ' total samples)<br />';\n\t\ttext += '<strong>On stack</strong>: ' +\n\t\t    det['pctSamples'] + '% of all samples ' +\n\t\t    '(' + det['nsamples'] + ' of ' +\n\t\t    det['nallsamples'] + ' total samples)';\n\n\t\tleft = det['x'] + 'px';\n\t\ttop = (det['y'] -\n\t\t    parseInt(svTooltipBox.style('height'), 10)) + 'px';\n\t\tsvTooltipBox.html(text);\n\t\tsvTooltipBox.style('left', left);\n\t\tsvTooltipBox.style('top', top);\n\t\tsvTooltipBox.style('opacity', 0.9);\n\t}\n};\n\nwindow.onload = svInit;\n\nfunction svInit()\n{\n\tsvTooltipBox = d3.select('#svTooltip');\n\tsvPopoutBox = d3.select('#svPopout');\n\n\tsvFillData(svRawData);\n\tsvFlameGraph = new FlameGraph(d3.select('#chart'), svRawData,\n\t    svSvgWidth, svSvgHeight, svContext, {\n\t        'coloring': svColorMode,\n\t\t'growDown': svGrowDown,\n\t\t'axisLabels': true\n\t    });\n}\n\nfunction svFillData(tree)\n{\n\tvar key, rem;\n\n\tfor (key in tree) {\n\t\tsvFillData(tree[key].svChildren);\n\n\t\trem = tree[key].svUnique;\n\t\tif (rem > 0) {\n\t\t\ttree[key].svChildren[''] = {\n\t\t\t    'svSynthetic': true,\n\t\t\t    'svUnique': rem,\n\t\t\t    'svTotal': rem,\n\t\t\t    'svChildren': {}\n\t\t\t};\n\t\t}\n\t}\n}\n\nfunction svColorMono(d, det)\n{\n\tif (d.data.value.svSynthetic)\n\t\treturn ('#ffffff');\n\n\tvar s = 20, splus = 80;\n\tvar sratio;\n\n\t/*\n\t * This version colors the block based on its percentage contribution of\n\t * overall time.\n\t */\n\tsratio = d.data.value.svUnique / det['maxUnique'];\n\n\tvar rh = 24;\n\tvar rs = (s + sratio * splus) / 100;\n\tvar rv = 0.95;\n\tvar rgb = convertHsvToRgb(rh, rs, rv);\n\treturn ('rgb(' + rgb.join(',') + ')');\n}\n\nfunction svDetailClose()\n{\n\tif (svDetailMode != 'zoom') {\n\t\tsvPopoutBox.html('');\n\t\tsvPopoutBox.style('opacity', null);\n\t\tsvPopoutBox.style('z-index', null);\n\t} else {\n\t\tsvFlameGraph.zoomSet({ 'x': 0, 'dx': 1, 'y': 0 });\n\t}\n}\n\n/*\n * Input: \"d\", a D3 node from the layout, typically resembling:\n *     parent: ...,  // parent D3 node\n *     data: {\n *         key: ..., // function name\n *         value: {\n *             svTotal: ...,\n *             svUnique: ...,\n *             svChildren: ...\n *         }\n *     }\n * Output: an object describing the raw flame graph data, matching the form:\n *     \"\": {\n *         svTotal: ...\n *         svUnique: ...\n *         svChildren: {\n *             key1: { // function name\n *                 svTotal: ...\n *                 svUnique: ...\n *                 svChildren: ...\n *             },\n *             ...\n *         }\n *     }\n */\nfunction svMakeSubgraphData(d)\n{\n\t/*\n\t * First, construct everything from the current node to all of its\n\t * leafs.\n\t */\n\tvar tree, oldtree;\n\n\ttree = {};\n\ttree[d.data.key] = d.data.value;\n\n\twhile (d.parent !== undefined) {\n\t\toldtree = tree;\n\t\ttree = {};\n\t\ttree[d.parent.data.key] = {\n\t\t    'svUnique': d.parent.data.value.svUnique,\n\t\t    'svTotal': d.parent.data.value.svTotal,\n\t\t    'svChildren': oldtree\n\t\t};\n\t\td = d.parent;\n\t}\n\n\treturn (tree);\n}\n\nfunction svDetailOpen(d)\n{\n\tif (svDetailMode != 'zoom') {\n\t\tsvPopoutBox.html('');\n\t\t/* jsl:ignore */\n\t\tnew FlameGraph(svPopoutBox, svMakeSubgraphData(d), null, null,\n\t\t    svContext, {\n\t\t\t'coloring': svColorMode,\n\t\t\t'growDown': svGrowDown\n\t\t    });\n\t\t/* jsl:end */\n\t\tsvPopoutBox.style('z-index', 1);\n\t\tsvPopoutBox.style('opacity', 1);\n\t} else {\n\t\tsvFlameGraph.zoomSet(d);\n\t}\n}\n\n/*\n * Build a flame graph rooted at the given \"node\" (a D3 selection) with the\n * given \"rawdata\" tree.  The graph will have size defined by \"pwidth\" and\n * \"pheight\".  \"context\" is used for notifications about UI actions.\n */\nfunction FlameGraph(node, rawdata, pwidth, pheight, context, options)\n{\n\tvar axiswidth, chartheight, rect, scale, nodeid, axis, data;\n\tvar fg = this;\n\n\tthis.fg_context = context;\n\tthis.fg_maxdepth = 0;\n\tthis.fg_maxunique = 0;\n\tthis.fg_depthsamples = [];\n\tthis.computeDepth(rawdata, 0);\n\n\tif (options.axisLabels)\n\t\taxiswidth = this.fg_axiswidth = svAxisLabelWidth;\n\telse\n\t\taxiswidth = this.fg_axiswidth = 0;\n\n\tthis.fg_svgwidth = pwidth !== null ? pwidth :\n\t    parseInt(node.style('width'), 10);\n\tthis.fg_svgheight = pheight !== null ? pheight : 25 * this.fg_maxdepth;\n\tthis.fg_chartwidth = this.fg_svgwidth - axiswidth;\n\tchartheight = this.fg_chartheight = this.fg_svgheight - axiswidth;\n\n\tthis.fg_xscale =\n\t    d3.scale.linear().range([0, this.fg_chartwidth]);\n\tthis.fg_yscale =\n\t    d3.scale.linear().range([0, this.fg_chartheight]);\n\n\tthis.fg_svg = node.append('svg:svg');\n\tthis.fg_svg.attr('width', this.fg_svgwidth);\n\tthis.fg_svg.attr('height', this.fg_svgheight);\n\n\t/* Create a background rectangle that resets the view when clicked. */\n\trect = this.fg_svg.append('svg:rect');\n\trect.attr('class', 'svBackground');\n\trect.attr('width', this.fg_svgwidth);\n\trect.attr('height', this.fg_svgheight);\n\trect.attr('fill', '#ffffff');\n\trect.on('click', this.detailClose.bind(this));\n\n\t/* Configure the partition layout. */\n\tthis.fg_part = d3.layout.partition();\n\tthis.fg_part.children(\n\t    function (d) { return (d3.entries(d.value.svChildren)); });\n\tthis.fg_part.value(function (d) { return (d.value.svTotal); });\n\tthis.fg_part.sort(function (d1, d2) {\n\t\treturn (d1.data.key.localeCompare(d2.data.key));\n\t});\n\n\t/* Configure the color function. */\n\tif (options.coloring == 'random') {\n\t\tscale = d3.scale.category20c();\n\t\tthis.fg_color = function (d) { return (scale(d.data.key)); };\n\t} else {\n\t\tthis.fg_color = function (d) {\n\t\t    return (svColorMono(d, { 'maxUnique': fg.fg_maxunique }));\n\t\t};\n\t}\n\n\t/* Configure the actual D3 components. */\n\tnodeid = this.fg_nodeid = function (d) {\n\t\treturn (encodeURIComponent([\n\t\t    d.data.key,\n\t\t    fg.fg_yscale(d.y),\n\t\t    fg.fg_xscale(d.x) ].join('@')));\n\t};\n\tthis.fg_rectwidth = function (d) { return (fg.fg_xscale(d.dx)); };\n\tthis.fg_height = function (d) { return (fg.fg_yscale(d.dy)); };\n\tthis.fg_textwidth = function (d) {\n\t\treturn (Math.max(0, fg.fg_rectwidth(d) - svTextPaddingRight));\n\t};\n\tthis.fg_x = function (d) {\n\t    return (fg.fg_xscale(d.x) + fg.fg_axiswidth); };\n\n\tif (options.growDown)\n\t\tthis.fg_y =\n\t\t    function (d) { return (fg.fg_yscale(d.y)); };\n\telse\n\t\tthis.fg_y = function (d) {\n\t\t    return (chartheight - fg.fg_yscale(d.y) -\n\t\t        2 * fg.fg_height(d));\n\t\t};\n\n\tdata = this.fg_part(d3.entries(rawdata)[0]);\n\tthis.fg_rects = this.fg_svg.selectAll('rect').data(data).\n\t    enter().append('svg:rect').\n\t    attr('class', function (d) {\n\t\treturn (d.data.value.svSynthetic ?  'svBoxSynthetic' : 'svBox');\n\t    }).\n\t    attr('x', this.fg_x).\n\t    attr('y', this.fg_y).\n\t    attr('rx', svCornerPixels).\n\t    attr('ry', svCornerPixels).\n\t    attr('height', this.fg_height).\n\t    attr('width', this.fg_rectwidth).\n\t    attr('fill', this.fg_color).\n\t    on('click', this.detailOpen.bind(this)).\n\t    on('mouseover', this.mouseover.bind(this)).\n\t    on('mouseout', this.mouseout.bind(this));\n\tthis.fg_clips = this.fg_svg.selectAll('clipPath').data(data).\n\t    enter().append('svg:clipPath').\n\t    attr('id', nodeid).\n\t    append('svg:rect').\n\t    attr('x', this.fg_x).\n\t    attr('y', this.fg_y).\n\t    attr('width', this.fg_textwidth).\n\t    attr('height', this.fg_height);\n\tthis.fg_text = this.fg_svg.selectAll('text').data(data).\n\t    enter().append('text').\n\t    attr('class', 'svBoxLabel').\n\t    attr('x', this.fg_x).\n\t    attr('y', this.fg_y).\n\t    attr('dx', svTextPaddingLeft).\n\t    attr('dy', svTextPaddingTop).\n\t    attr('clip-path', function (d) {\n\t\treturn ('url(\"#' + nodeid(d) + '\")');\n\t    }).\n\t    on('click', this.detailOpen.bind(this)).\n\t    on('mouseover', this.mouseover.bind(this)).\n\t    on('mouseout', this.mouseout.bind(this)).\n\t    text(function (d) { return (d.data.key); });\n\n\tif (options.axisLabels) {\n\t\taxis = this.fg_svg.append('text');\n\t\taxis.attr('class', 'svYAxisLabel');\n\t\taxis.attr('x', -this.fg_svgheight);\n\t\taxis.attr('dx', '8em');\n\t\taxis.attr('y', '30px');\n\t\taxis.attr('transform', 'rotate(-90)');\n\t\taxis.text('Call Stacks');\n\n\t\taxis = this.fg_svg.append('text');\n\t\taxis.attr('class', 'svYAxisLabel');\n\t\taxis.attr('x', '30px');\n\t\taxis.attr('dx', '8em');\n\t\t/*\n\t\t * Magic constants here:\n\t\t *   30 is the height of the label (since we're specifying the\n\t\t *   top coordinate), and 25 is the height of each block\n\t\t *   (because there's an invisible row we want to cover up).\n\t\t */\n\t\taxis.attr('y', this.fg_svgheight - 30 - 25);\n\t\taxis.attr('width', this.fg_svgwidth - 30);\n\t\taxis.text('Percentage of Samples');\n\t}\n}\n\nFlameGraph.prototype.computeDepth = function (tree, depth)\n{\n\tvar key, rem;\n\n\tif (depth > this.fg_maxdepth)\n\t\tthis.fg_maxdepth = depth;\n\n\tif (depth >= this.fg_depthsamples.length)\n\t\tthis.fg_depthsamples[depth] = 0;\n\n\tfor (key in tree) {\n\t\tif (tree[key].svUnique > this.fg_maxunique)\n\t\t\tthis.fg_maxunique = tree[key].svUnique;\n\t\tthis.fg_depthsamples[depth] += tree[key].svTotal;\n\t\tthis.computeDepth(tree[key].svChildren, depth + 1);\n\n\t\trem = tree[key].svUnique;\n\t\tif (rem > 0 && tree[key].svChildren[''] === undefined) {\n\t\t\ttree[key].svChildren[''] = {\n\t\t\t    'svSynthetic': true,\n\t\t\t    'svUnique': rem,\n\t\t\t    'svTotal': rem,\n\t\t\t    'svChildren': {}\n\t\t\t};\n\t\t}\n\t}\n};\n\nFlameGraph.prototype.detailClose = function ()\n{\n\tif (this.fg_context !== null)\n\t\tthis.fg_context.detailClose();\n};\n\nFlameGraph.prototype.detailOpen = function (d)\n{\n\tif (!d.data.value.svSynthetic && this.fg_context !== null)\n\t\tthis.fg_context.detailOpen(d);\n};\n\nFlameGraph.prototype.mouseover = function (d)\n{\n\tif (d.data.value.svSynthetic || this.fg_context === null)\n\t\treturn;\n\n\tvar nsamples, nunique;\n\tvar pctSamples, pctUnique;\n\tvar detail;\n\tvar fg = this;\n\n\tnsamples = d.data.value.svTotal;\n\tpctSamples = (100 * nsamples / this.fg_depthsamples[0]).toFixed(1);\n\n\tnunique = d.data.value.svUnique;\n\tpctUnique = (100 * nunique / this.fg_depthsamples[0]).toFixed(1);\n\n\tdetail = {\n\t    'label': d.data.key,\n\t    'nsamples': d.data.value.svTotal,\n\t    'nunique': d.data.value.svUnique,\n\t    'nallsamples': this.fg_depthsamples[0],\n\t    'pctSamples': pctSamples,\n\t    'pctUnique': pctUnique,\n\t    'x': d3.event.pageX,\n\t    'y': d3.event.pageY\n\t};\n\n\tthis.fg_hoverto = setTimeout(function () {\n\t\tfg.fg_hoverto = null;\n\t\tfg.fg_context.mouseover(d, detail);\n\t}, 500);\n};\n\nFlameGraph.prototype.mouseout = function (d)\n{\n\tif (this.fg_hoverto)\n\t\tclearTimeout(this.fg_hoverto);\n\tif (this.fg_context !== null)\n\t\tthis.fg_context.mouseout(d);\n};\n\nFlameGraph.prototype.zoomSet = function (cd)\n{\n\tvar fg = this;\n\n\tthis.fg_xscale.domain([cd.x, cd.x + cd.dx]);\n\tthis.fg_rectwidth = function (d) {\n\t\treturn (fg.fg_xscale(d.x + d.dx) - fg.fg_xscale(d.x));\n\t};\n\tthis.fg_textwidth = function (d) {\n\t\treturn (Math.max(0,\n\t\t    fg.fg_xscale(d.x + d.dx) -\n\t\t    fg.fg_xscale(d.x) - svTextPaddingRight));\n\t};\n\tthis.fg_rects.transition().duration(svTransitionTime).\n\t    attr('x', this.fg_x).\n\t    attr('width', this.fg_rectwidth);\n\tthis.fg_clips.transition().duration(svTransitionTime).\n\t    attr('x', this.fg_x).\n\t    attr('width', this.fg_textwidth);\n\tthis.fg_text.transition().duration(svTransitionTime).\n\t    attr('x', this.fg_x);\n};\n\n\n/*\n * This function is copied directly from lib/color.js.  It would be better if we\n * could share code between Node.js and web JS.\n */\nfunction convertHsvToRgb(h, s, v)\n{\n\tvar r, g, b;\n\tvar i;\n\tvar f, p, q, t;\n\n\tif (s === 0) {\n\t\t/*\n\t\t * A saturation of 0.0 is achromatic (grey).\n\t\t */\n\t\tr = g = b = v;\n\n\t\treturn ([ Math.round(r * 255), Math.round(g * 255),\n\t\t    Math.round(b * 255) ]);\n\t}\n\n\th /= 60; // sector 0 to 5\n\n\ti = Math.floor(h);\n\tf = h - i; // fractional part of h\n\tp = v * (1 - s);\n\tq = v * (1 - s * f);\n\tt = v * (1 - s * (1 - f));\n\n\tswitch (i) {\n\t\tcase 0:\n\t\t\tr = v;\n\t\t\tg = t;\n\t\t\tb = p;\n\t\t\tbreak;\n\n\t\tcase 1:\n\t\t\tr = q;\n\t\t\tg = v;\n\t\t\tb = p;\n\t\t\tbreak;\n\n\t\tcase 2:\n\t\t\tr = p;\n\t\t\tg = v;\n\t\t\tb = t;\n\t\t\tbreak;\n\n\t\tcase 3:\n\t\t\tr = p;\n\t\t\tg = q;\n\t\t\tb = v;\n\t\t\tbreak;\n\n\t\tcase 4:\n\t\t\tr = t;\n\t\t\tg = p;\n\t\t\tb = v;\n\t\t\tbreak;\n\n\t\tdefault: // case 5:\n\t\t\tr = v;\n\t\t\tg = p;\n\t\t\tb = q;\n\t\t\tbreak;\n\t}\n\n\treturn ([ Math.round(r * 255),\n\t    Math.round(g * 255), Math.round(b * 255) ]);\n}\n\n        /* END contents of icicle.js */\n    </script>\n  </head>\n  <body>\n    <h1>Flame graph</h1>\n    <div id=\"info\">\n      Hover over a block for summary information.  Click a block for details.\n      <a href=\"javascript:svDetailClose()\">Reset view</a>\n      <div class=\"svTooltip\" id=\"svTooltip\"></div>\n    </div>\n    <div id=\"chart\">\n      <div style=\"position: relative\">\n      <div class=\"svPopout\" id=\"svPopout\">\n      </div>\n      </div>\n    </div>\n  </body>\n</html>\n"
  },
  {
    "path": "dev/README",
    "content": "EXPERIMENTAL: This includes some work in progress code, which may not work\nproperly.\n\nHot Cold Graphs\n===============\nThese show both on-CPU time (in shades of red) and off-CPU time (blocked time;\nin shades of blue) in a similar style to the Flame Graph.\n\nThread Hot Cold Graphs\n======================\nThese are per-Thread Hot Cold Graphs, which helps separate logical functions\nthat are managed by their threads, and helps you estimate speed up for the\nthreads of interest.\n"
  },
  {
    "path": "dev/gatherhc-kern.d",
    "content": "#!/usr/sbin/dtrace -s\n\n#pragma D option stackframes=100\n#pragma D option defaultargs\n\nprofile:::profile-999\n/arg0/\n{\n\t@[stack(), 1] = sum(1000);\n}\n\nsched:::off-cpu\n{\n\tself->start = timestamp;\n}\n\nsched:::on-cpu\n/(this->start = self->start)/\n{\n\tthis->delta = (timestamp - this->start) / 1000;\n\t@[stack(), 0] = sum(this->delta);\n\tself->start = 0;\n}\n\nprofile:::tick-60s,\ndtrace:::END\n{\n\tnormalize(@, 1000);\n\tprinta(\"%koncpu:%d ms:%@d\\n\", @);\n\ttrunc(@);\n\texit(0);\n}\n"
  },
  {
    "path": "dev/gatherthc-kern.d",
    "content": "#!/usr/sbin/dtrace -s\n\n#pragma D option stackframes=100\n#pragma D option defaultargs\n\nprofile:::profile-999\n/arg0/\n{\n\t@[stack(), (uint64_t)curthread, pid, tid, execname, 1] = sum(1000);\n}\n\nsched:::off-cpu\n{\n\tself->start = timestamp;\n}\n\nsched:::on-cpu\n/(this->start = self->start)/\n{\n\tthis->delta = (timestamp - this->start) / 1000;\n\t@[stack(), (uint64_t)curthread, pid, tid, execname, 0] = sum(this->delta);\n\tself->start = 0;\n}\n\nprofile:::tick-60s,\ndtrace:::END\n{\n\tnormalize(@, 1000);\n\tprinta(\"%kthread:%d pid:%d tid:%d name:%s oncpu:%d ms:%@d\\n\", @);\n\ttrunc(@);\n\texit(0);\n}\n"
  },
  {
    "path": "dev/hcstackcollapse.pl",
    "content": "#!/usr/bin/perl -w\n#\n# hcstackcollapse.pl\tcollapse hot/cold multiline stacks into single lines.\n#\n# EXPERIMENTAL: This is a work in progress, and may not work properly.\n#\n# Parses a multiline stack followed by oncpu status and ms on a separate line\n# (see example below) and outputs a comma separated stack followed by a space\n# and the number. If memory addresses (+0xd) are present, they are stripped,\n# and resulting identical stacks are colased with their counts summed.\n#\n# USAGE: ./hcstackcollapse.pl infile > outfile\n#\n# Example input:\n#\n# mysqld`_Z10do_commandP3THD+0xd4\n# mysqld`handle_one_connection+0x1a6\n# libc.so.1`_thrp_setup+0x8d\n# libc.so.1`_lwp_start\n# oncpu:1 ms:2664\n#\n# Example output:\n#\n# libc.so.1`_lwp_start,libc.so.1`_thrp_setup,mysqld`handle_one_connection,mysqld`_Z10do_commandP3THD oncpu:1 ms:2664\n#\n# Input may contain many stacks, and can be generated using DTrace.  The\n# first few lines of input are skipped (see $headerlines).\n#\n# Copyright 2013 Joyent, Inc.  All rights reserved.\n# Copyright 2013 Brendan Gregg.  All rights reserved.\n#\n# CDDL HEADER START\n#\n# The contents of this file are subject to the terms of the\n# Common Development and Distribution License (the \"License\").\n# You may not use this file except in compliance with the License.\n#\n# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE\n# or http://opensource.org/licenses/CDDL-1.0.\n# See the License for the specific language governing permissions\n# and limitations under the License.\n#\n# When distributing Covered Code, include this CDDL HEADER in each\n# file and include the License file at usr/src/OPENSOLARIS.LICENSE.\n# If applicable, add the following below this CDDL HEADER, with the\n# fields enclosed by brackets \"[]\" replaced with your own identifying\n# information: Portions Copyright [yyyy] [name of copyright owner]\n#\n# CDDL HEADER END\n#\n# 14-Aug-2011\tBrendan Gregg\tCreated this.\n\nuse strict;\n\nmy %collapsed;\nmy $headerlines = 2;\n\nsub remember_stack {\n\tmy ($stack, $oncpu, $count) = @_;\n\t$collapsed{\"$stack $oncpu\"} += $count;\n}\n\nmy $nr = 0;\nmy @stack;\n\nforeach (<>) {\n\tnext if $nr++ < $headerlines;\n\tchomp;\n\n\tif (m/^oncpu:(\\d+) ms:(\\d+)$/) {\n\t\tremember_stack(join(\",\", @stack), $1, $2) unless $2 == 0;\n\t\t@stack = ();\n\t\tnext;\n\t}\n\n\tnext if (m/^\\s*$/);\n\n\tmy $frame = $_;\n\t$frame =~ s/^\\s*//;\n\t$frame =~ s/\\+.*$//;\n\t$frame = \"-\" if $frame eq \"\";\n\tunshift @stack, $frame;\n}\n\nforeach my $k (sort { $a cmp $b } keys %collapsed) {\n\tprint \"$k $collapsed{$k}\\n\";\n}\n"
  },
  {
    "path": "dev/hotcoldgraph.pl",
    "content": "#!/usr/bin/perl -w\n#\n# hotcoldgraph.pl\tflame/cold stack grapher.\n#\n# EXPERIMENTAL: This is a work in progress, and may not work properly.\n#\n# This takes on and off-cpu stack timings (see hcstackcollapse.pl) and\n# renders a call graph, allowing latency in codepaths to be quickly identified.\n#\n# USAGE: ./hotcoldgraph.pl input.txt > graph.svg\n#\n#        grep funcA input.txt | ./hotcoldgraph.pl > graph.svg\n#\n# The input is stack frames and sample counts formatted as single lines.  Each\n# frame in the stack is comma separated, with a space and count at the end of\n# the line.  These can be generated using DTrace with stackcollapse.pl.\n#\n# The output graph shows relative presense of functions in stack samples.  The\n# ordering on the x-axis has no meaning; since the data is samples, time order\n# of events is not known.  The order used sorts function names alphabeticly.\n#\n# HISTORY\n#\n# This was inspired by Neelakanth Nadgir's excellent function_call_graph.rb\n# program, which visualized function entry and return trace events.  As Neel\n# wrote: \"The output displayed is inspired by Roch's CallStackAnalyzer which\n# was in turn inspired by the work on vftrace by Jan Boerhout\".  See:\n# http://blogs.sun.com/realneel/entry/visualizing_callstacks_via_dtrace_and\n#\n# For the on-CPU graph only, see flamegraph.pl.\n#\n# Copyright 2013 Joyent, Inc.  All rights reserved.\n# Copyright 2013 Brendan Gregg.  All rights reserved.\n#\n# CDDL HEADER START\n#\n# The contents of this file are subject to the terms of the\n# Common Development and Distribution License (the \"License\").\n# You may not use this file except in compliance with the License.\n#\n# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE\n# or http://opensource.org/licenses/CDDL-1.0.\n# See the License for the specific language governing permissions\n# and limitations under the License.\n#\n# When distributing Covered Code, include this CDDL HEADER in each\n# file and include the License file at usr/src/OPENSOLARIS.LICENSE.\n# If applicable, add the following below this CDDL HEADER, with the\n# fields enclosed by brackets \"[]\" replaced with your own identifying\n# information: Portions Copyright [yyyy] [name of copyright owner]\n#\n# CDDL HEADER END  \n#\n# 10-Sep-2011\tBrendan Gregg\tCreated this.\n\nuse strict;\n\n# tunables\nmy $fonttype = \"Verdana\";\nmy $imagewidth = 1200;\t\t# max width, pixels\nmy $frameheight = 16;\t\t# max height is dynamic\nmy $fontsize = 12;\t\t# base text size\nmy $minwidth = 0.1;\t\t# min function width, pixels\n\n# internals\nmy $ypad1 = $fontsize * 4;\t# pad top, include title\nmy $ypad2 = $fontsize * 2 + 10;\t# pad bottom, include labels\nmy $xpad = 10;\t\t\t# pad lefm and right\nmy $timemax = 0;\nmy $depthmax = 0;\nmy %Events;\n\n# SVG functions\n{ package SVG;\n\tsub new {\n\t\tmy $class = shift;\n\t\tmy $self = {};\n\t\tbless ($self, $class);\n\t\treturn $self;\n\t}\n\n\tsub header {\n\t\tmy ($self, $w, $h) = @_;\n\t\t$self->{svg} .= <<SVG;\n<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n<svg version=\"1.1\" width=\"$w\" height=\"$h\" onload=\"init(evt)\" viewBox=\"0 0 $w $h\" xmlns=\"http://www.w3.org/2000/svg\" >\nSVG\n\t}\n\n\tsub include {\n\t\tmy ($self, $content) = @_;\n\t\t$self->{svg} .= $content;\n\t}\n\n\tsub colorAllocate {\n\t\tmy ($self, $r, $g, $b) = @_;\n\t\treturn \"rgb($r,$g,$b)\";\n\t}\n\n\tsub filledRectangle {\n\t\tmy ($self, $x1, $y1, $x2, $y2, $fill, $extra) = @_;\n\t\t$x1 = sprintf \"%0.1f\", $x1;\n\t\t$x2 = sprintf \"%0.1f\", $x2;\n\t\tmy $w = sprintf \"%0.1f\", $x2 - $x1;\n\t\tmy $h = sprintf \"%0.1f\", $y2 - $y1;\n\t\t$extra = defined $extra ? $extra : \"\";\n\t\t$self->{svg} .= qq/<rect x=\"$x1\" y=\"$y1\" width=\"$w\" height=\"$h\" fill=\"$fill\" $extra \\/>\\n/;\n\t}\n\n\tsub stringTTF {\n\t\tmy ($self, $color, $font, $size, $angle, $x, $y, $str, $loc, $extra) = @_;\n\t\t$loc = defined $loc ? $loc : \"left\";\n\t\t$extra = defined $extra ? $extra : \"\";\n\t\t$self->{svg} .= qq/<text text-anchor=\"$loc\" x=\"$x\" y=\"$y\" font-size=\"$size\" font-family=\"$font\" fill=\"$color\" $extra >$str<\\/text>\\n/;\n\t}\n\n\tsub svg {\n\t\tmy $self = shift;\n\t\treturn \"$self->{svg}</svg>\\n\";\n\t}\n\t1;\n}\n\nsub color {\n\tmy $type = shift;\n\tif (defined $type and $type eq \"hot\") {\n\t\tmy $r = 205 + int(rand(50));\n\t\tmy $g = 0 + int(rand(230));\n\t\tmy $b = 0 + int(rand(55));\n\t\treturn \"rgb($r,$g,$b)\";\n\t}\n\tif (defined $type and $type eq \"cold\") {\n\t\tmy $r = 0 + int(rand(40));\n\t\tmy $b = 205 + int(rand(50));\n\t\tmy $g = 0 + int(rand(150));\n\t\treturn \"rgb($r,$g,$b)\";\n\t}\n\treturn \"rgb(0,0,0)\";\n}\n\nmy %Node;\nmy %Tmp;\n\nsub flow {\n\tmy ($a, $b, $ca, $cb, $v) = @_;\n\tmy @A = split \",\", $a;\n\tmy @B = split \",\", $b;\n\n\tmy $len_a = $#A;\n\tmy $len_b = $#B;\n\t$depthmax = $len_b if $len_b > $depthmax;\n\n\tmy $i = 0;\n\tmy $len_same = 0;\n\tfor (; $i <= $len_a; $i++) {\n\t\tlast if $i > $len_b;\n\t\tlast if $A[$i] ne $B[$i];\n\t}\n\t$len_same = $i;\n\t$len_same = 0 if $ca != $cb;\n\n\tfor ($i = $len_a; $i >= $len_same; $i--) {\n\t\tmy $k = \"$A[$i]-$i\";\n\t\t# a unique ID is constructed from func-depth-etime;\n\t\t# func-depth isn't unique, it may be repeated later.\n\t\t$Node{\"$k-$v-$ca\"}->{stime} = $Tmp{$k}->{stime};\n\t\tdelete $Tmp{$k}->{stime};\n\t\tdelete $Tmp{$k};\n\t}\n\n\tfor ($i = $len_same; $i <= $len_b; $i++) {\n\t\tmy $k = \"$B[$i]-$i\";\n\t\t$Tmp{$k}->{stime} = $v;\n\t}\n}\n\n# Parse input\nmy @Data = <>;\nmy $laststack = \"\";\nmy $lastcpu = 0;\nmy $time = 0;\nforeach (sort @Data) {\n\tchomp;\n\tmy ($stack, $cpu, $samples) = split ' ';\n\t$stack = \",$stack\";\n\tnext unless defined $samples;\n\tflow($laststack, $stack, $lastcpu, $cpu, $time);\n\t$time += $samples;\n\t$laststack = $stack;\n\t$lastcpu = $cpu;\n}\nflow($laststack, \"\", $lastcpu, 0, $time);\n$timemax = $time or die \"ERROR: No stack counts found\\n\";\n\n# Draw canvas\nmy $widthpertime = ($imagewidth - 2 * $xpad) / $timemax;\nmy $imageheight = ($depthmax * $frameheight) + $ypad1 + $ypad2;\nmy $im = SVG->new();\n$im->header($imagewidth, $imageheight);\nmy $inc = <<INC;\n<defs >\n\t<linearGradient id=\"background\" y1=\"0\" y2=\"1\" x1=\"0\" x2=\"0\" >\n\t\t<stop stop-color=\"#eeeeee\" offset=\"5%\" />\n\t\t<stop stop-color=\"#eeeeb0\" offset=\"95%\" />\n\t</linearGradient>\n</defs>\n<style type=\"text/css\">\n\trect[rx]:hover { stroke:black; stroke-width:1; }\n\ttext:hover { stroke:black; stroke-width:1; stroke-opacity:0.35; }\n</style>\n<script type=\"text/ecmascript\">\n<![CDATA[\n\tvar details;\n\tfunction init(evt) { details = document.getElementById(\"details\").firstChild; }\n\tfunction s(info) { details.nodeValue = info; }\n\tfunction c() { details.nodeValue = ' '; }\n]]>\n</script>\nINC\n$im->include($inc);\n$im->filledRectangle(0, 0, $imagewidth, $imageheight, 'url(#background)');\nmy ($white, $black, $vvdgrey, $vdgrey) = (\n\t$im->colorAllocate(255, 255, 255),\n\t$im->colorAllocate(0, 0, 0),\n\t$im->colorAllocate(40, 40, 40),\n\t$im->colorAllocate(160, 160, 160),\n    );\n$im->stringTTF($black, $fonttype, $fontsize + 5, 0.0, int($imagewidth / 2), $fontsize * 2, \"Flame Graph\", \"middle\");\n$im->stringTTF($black, $fonttype, $fontsize, 0.0, $xpad, $imageheight - ($ypad2 / 2), 'Function:');\n$im->stringTTF($black, $fonttype, $fontsize, 0.0, $xpad + 60, $imageheight - ($ypad2 / 2), \" \", \"\", 'id=\"details\"');\n\n# Draw frames\nforeach my $id (keys %Node) {\n\tmy ($func, $depth, $etime, $cpu) = split \"-\", $id;\n\tdie \"missing start for $id\" if !defined $Node{$id}->{stime};\n\tmy $stime = $Node{$id}->{stime};\n\tmy $samples = $etime - $stime;\n\n\tmy $x1 = $xpad + $stime * $widthpertime;\n\tmy $x2 = $xpad + $etime * $widthpertime;\n\tmy $width = $x2 - $x1;\n\tnext if $width < $minwidth;\n\n\tmy $y1 = $imageheight - $ypad2 - ($depth + 1) * $frameheight + 1;\n\tmy $y2 = $imageheight - $ypad2 - $depth * $frameheight;\n\n\tmy $info;\n\tif ($func eq \"\" and $depth == 0) {\n\t\t$info = \"all ($samples ms, 100%)\";\n\t} else {\n\t\tmy $pct = sprintf \"%.2f\", ((100 * $samples) / $timemax);\n\t\t$info = \"$func ($samples ms, $pct%)\";\n\t}\n\tmy $color = $cpu ? \"hot\" : \"cold\";\n\t$im->filledRectangle($x1, $y1, $x2, $y2, color($color), 'rx=\"2\" ry=\"2\" onmouseover=\"s(' . \"'$info'\" . ')\" onmouseout=\"c()\"');\n\n\tif ($width > 50) {\n\t\tmy $chars = int($width / (0.7 * $fontsize));\n\t\tmy $text = substr $func, 0, $chars;\n\t\t$text .= \"..\" if $chars < length $func;\n\t\t$im->stringTTF($black, $fonttype, $fontsize, 0.0, $x1 + 3, 3 + ($y1 + $y2) / 2, $text, \"\",\n\t\t    'onmouseover=\"s(' . \"'$info'\" . ')\" onmouseout=\"c()\"');\n\t}\n}\n\nprint $im->svg;\n"
  },
  {
    "path": "dev/thcstackcollapse.pl",
    "content": "#!/usr/bin/perl -w\n#\n# thcstackcollapse.pl\tcollapse thread hot/cold multiline stacks into\n#\t\t\tsingle lines.\n#\n# EXPERIMENTAL: This is a work in progress, and may not work properly.\n#\n# Parses a multiline stack followed by thread ID, PID, TID, name, oncpu status,\n# and ms on a separate line (see example below) and outputs a comma separated\n# stack followed by a space and the numbers. If memory addresses (+0xd) are\n# present, they are stripped, and resulting identical stacks are colased with\n# their counts summed.\n#\n# USAGE: ./thcstackcollapse.pl infile > outfile\n#\n# Example input:\n#\n# mysqld`_Z10do_commandP3THD+0xd4\n# mysqld`handle_one_connection+0x1a6\n# libc.so.1`_thrp_setup+0x8d\n# libc.so.1`_lwp_start\n# thread:0x78372480 pid:826 tid:3 name:mysqld oncpu:1 ms:2664\n#\n# Example output:\n#\n# libc.so.1`_lwp_start,libc.so.1`_thrp_setup,mysqld`handle_one_connection,mysqld`_Z10do_commandP3THD 0x78372480 826 3 mysqld 1 2664\n#\n# Input may contain many stacks, and can be generated using DTrace.  The\n# first few lines of input are skipped (see $headerlines).\n#\n# Copyright 2013 Joyent, Inc.  All rights reserved.\n# Copyright 2013 Brendan Gregg.  All rights reserved.\n#\n# CDDL HEADER START\n#\n# The contents of this file are subject to the terms of the\n# Common Development and Distribution License (the \"License\").\n# You may not use this file except in compliance with the License.\n#\n# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE\n# or http://www.opensolaris.org/os/licensing.\n# See the License for the specific language governing permissions\n# and limitations under the License.\n#\n# When distributing Covered Code, include this CDDL HEADER in each\n# file and include the License file at usr/src/OPENSOLARIS.LICENSE.\n# If applicable, add the following below this CDDL HEADER, with the\n# fields enclosed by brackets \"[]\" replaced with your own identifying\n# information: Portions Copyright [yyyy] [name of copyright owner]\n#\n# CDDL HEADER END\n#\n# 14-Aug-2011\tBrendan Gregg\tCreated this.\n\nuse strict;\n\nmy %collapsed;\nmy $headerlines = 2;\n\nsub remember_stack {\n\tmy ($stack, $thread, $pid, $tid, $name, $oncpu, $count) = @_;\n\t$collapsed{\"$stack $thread $pid $tid $name $oncpu\"} += $count;\n}\n\nmy $nr = 0;\nmy @stack;\n\nforeach (<>) {\n\tnext if $nr++ < $headerlines;\n\tchomp;\n\n\tnext if (m/^\\s*$/);\n\n\tif (m/^thread:(\\d+) pid:(\\d+) tid:(\\d+) name:(.*?) oncpu:(\\d+) ms:(\\d+)$/) {\n\t\tremember_stack(join(\",\", @stack), $1, $2, $3, $4, $5, $6) if $6 > 0;\n\t\t@stack = ();\n\t\tnext;\n\t}\n\n\tmy $frame = $_;\n\t$frame =~ s/^\\s*//;\n\t$frame =~ s/\\+.*$//;\n\t$frame = \"-\" if $frame eq \"\";\n\tunshift @stack, $frame;\n}\n\nforeach my $k (sort { $a cmp $b } keys %collapsed) {\n\tprint \"$k $collapsed{$k}\\n\";\n}\n"
  },
  {
    "path": "difffolded.pl",
    "content": "#!/usr/bin/perl -w\n#\n# difffolded.pl \tdiff two folded stack files. Use this for generating\n#\t\t\tflame graph differentials.\n#\n# USAGE: ./difffolded.pl [-hns] folded1 folded2 | ./flamegraph.pl > diff2.svg\n#\n# Options are described in the usage message (-h).\n#\n# The flamegraph will be colored based on higher samples (red) and smaller\n# samples (blue). The frame widths will be based on the 2nd folded file.\n# This might be confusing if stack frames disappear entirely; it will make\n# the most sense to ALSO create a differential based on the 1st file widths,\n# while switching the hues; eg:\n#\n#  ./difffolded.pl folded2 folded1 | ./flamegraph.pl --negate > diff1.svg\n#\n# Here's what they mean when comparing a before and after profile:\n#\n# diff1.svg: widths show the before profile, colored by what WILL happen\n# diff2.svg: widths show the after profile, colored by what DID happen\n#\n# INPUT: See stackcollapse* programs.\n#\n# OUTPUT: The full list of stacks, with two columns, one from each file.\n# If a stack wasn't present in a file, the column value is zero.\n#\n# folded_stack_trace count_from_folded1 count_from_folded2\n#\n# eg:\n#\n# funca;funcb;funcc 31 33\n# ...\n#\n# COPYRIGHT: Copyright (c) 2014 Brendan Gregg.\n#\n#  This program is free software; you can redistribute it and/or\n#  modify it under the terms of the GNU General Public License\n#  as published by the Free Software Foundation; either version 2\n#  of the License, or (at your option) any later version.\n#\n#  This program is distributed in the hope that it will be useful,\n#  but WITHOUT ANY WARRANTY; without even the implied warranty of\n#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n#  GNU General Public License for more details.\n#\n#  You should have received a copy of the GNU General Public License\n#  along with this program; if not, write to the Free Software Foundation,\n#  Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.\n#\n#  (http://www.gnu.org/copyleft/gpl.html)\n#\n# 28-Oct-2014\tBrendan Gregg\tCreated this.\n\nuse strict;\nuse Getopt::Std;\n\n# defaults\nmy $normalize = 0;\t# make sample counts equal\nmy $striphex = 0;\t# strip hex numbers\n\nsub usage {\n\tprint STDERR <<USAGE_END;\nUSAGE: $0 [-hns] folded1 folded2 | flamegraph.pl > diff2.svg\n\t    -h       # help message\n\t    -n       # normalize sample counts\n\t    -s       # strip hex numbers (addresses)\nSee stackcollapse scripts for generating folded files.\nAlso consider flipping the files and hues to highlight reduced paths:\n$0 folded2 folded1 | ./flamegraph.pl --negate > diff1.svg\nUSAGE_END\n\texit 2;\n}\n\nusage() if @ARGV < 2;\nour($opt_h, $opt_n, $opt_s);\ngetopts('ns') or usage();\nusage() if $opt_h;\n$normalize = 1 if defined $opt_n;\n$striphex = 1 if defined $opt_s;\n\nmy ($total1, $total2) = (0, 0);\nmy %Folded;\n\nmy $file1 = $ARGV[0];\nmy $file2 = $ARGV[1];\n\nopen FILE, $file1 or die \"ERROR: Can't read $file1\\n\";\nwhile (<FILE>) {\n\tchomp;\n\tmy ($stack, $count) = (/^(.*)\\s+?(\\d+(?:\\.\\d*)?)$/);\n\t$stack =~ s/0x[0-9a-fA-F]+/0x.../g if $striphex;\n\t$Folded{$stack}{1} += $count;\n\t$total1 += $count;\n}\nclose FILE;\n\nopen FILE, $file2 or die \"ERROR: Can't read $file2\\n\";\nwhile (<FILE>) {\n\tchomp;\n\tmy ($stack, $count) = (/^(.*)\\s+?(\\d+(?:\\.\\d*)?)$/);\n\t$stack =~ s/0x[0-9a-fA-F]+/0x.../g if $striphex;\n\t$Folded{$stack}{2} += $count;\n\t$total2 += $count;\n}\nclose FILE;\n\nforeach my $stack (keys %Folded) {\n\t$Folded{$stack}{1} = 0 unless defined $Folded{$stack}{1};\n\t$Folded{$stack}{2} = 0 unless defined $Folded{$stack}{2};\n\tif ($normalize && $total1 != $total2) {\n\t\t$Folded{$stack}{1} = int($Folded{$stack}{1} * $total2 / $total1);\n\t}\n\tprint \"$stack $Folded{$stack}{1} $Folded{$stack}{2}\\n\";\n}\n"
  },
  {
    "path": "docs/cddl1.txt",
    "content": "Unless otherwise noted, all files in this distribution are released\nunder the Common Development and Distribution License (CDDL).\nExceptions are noted within the associated source files.\n\n--------------------------------------------------------------------\n\n\nCOMMON DEVELOPMENT AND DISTRIBUTION LICENSE Version 1.0\n\n1. Definitions.\n\n    1.1. \"Contributor\" means each individual or entity that creates\n         or contributes to the creation of Modifications.\n\n    1.2. \"Contributor Version\" means the combination of the Original\n         Software, prior Modifications used by a Contributor (if any),\n         and the Modifications made by that particular Contributor.\n\n    1.3. \"Covered Software\" means (a) the Original Software, or (b)\n         Modifications, or (c) the combination of files containing\n         Original Software with files containing Modifications, in\n         each case including portions thereof.\n\n    1.4. \"Executable\" means the Covered Software in any form other\n         than Source Code.\n\n    1.5. \"Initial Developer\" means the individual or entity that first\n         makes Original Software available under this License.\n\n    1.6. \"Larger Work\" means a work which combines Covered Software or\n         portions thereof with code not governed by the terms of this\n         License.\n\n    1.7. \"License\" means this document.\n\n    1.8. \"Licensable\" means having the right to grant, to the maximum\n         extent possible, whether at the time of the initial grant or\n         subsequently acquired, any and all of the rights conveyed\n         herein.\n\n    1.9. \"Modifications\" means the Source Code and Executable form of\n         any of the following:\n\n        A. Any file that results from an addition to, deletion from or\n           modification of the contents of a file containing Original\n           Software or previous Modifications;\n\n        B. Any new file that contains any part of the Original\n           Software or previous Modifications; or\n\n        C. Any new file that is contributed or otherwise made\n           available under the terms of this License.\n\n    1.10. \"Original Software\" means the Source Code and Executable\n          form of computer software code that is originally released\n          under this License.\n\n    1.11. \"Patent Claims\" means any patent claim(s), now owned or\n          hereafter acquired, including without limitation, method,\n          process, and apparatus claims, in any patent Licensable by\n          grantor.\n\n    1.12. \"Source Code\" means (a) the common form of computer software\n          code in which modifications are made and (b) associated\n          documentation included in or with such code.\n\n    1.13. \"You\" (or \"Your\") means an individual or a legal entity\n          exercising rights under, and complying with all of the terms\n          of, this License.  For legal entities, \"You\" includes any\n          entity which controls, is controlled by, or is under common\n          control with You.  For purposes of this definition,\n          \"control\" means (a) the power, direct or indirect, to cause\n          the direction or management of such entity, whether by\n          contract or otherwise, or (b) ownership of more than fifty\n          percent (50%) of the outstanding shares or beneficial\n          ownership of such entity.\n\n2. License Grants.\n\n    2.1. The Initial Developer Grant.\n\n    Conditioned upon Your compliance with Section 3.1 below and\n    subject to third party intellectual property claims, the Initial\n    Developer hereby grants You a world-wide, royalty-free,\n    non-exclusive license:\n\n        (a) under intellectual property rights (other than patent or\n            trademark) Licensable by Initial Developer, to use,\n            reproduce, modify, display, perform, sublicense and\n            distribute the Original Software (or portions thereof),\n            with or without Modifications, and/or as part of a Larger\n            Work; and\n\n        (b) under Patent Claims infringed by the making, using or\n            selling of Original Software, to make, have made, use,\n            practice, sell, and offer for sale, and/or otherwise\n            dispose of the Original Software (or portions thereof).\n\n        (c) The licenses granted in Sections 2.1(a) and (b) are\n            effective on the date Initial Developer first distributes\n            or otherwise makes the Original Software available to a\n            third party under the terms of this License.\n\n        (d) Notwithstanding Section 2.1(b) above, no patent license is\n            granted: (1) for code that You delete from the Original\n            Software, or (2) for infringements caused by: (i) the\n            modification of the Original Software, or (ii) the\n            combination of the Original Software with other software\n            or devices.\n\n    2.2. Contributor Grant.\n\n    Conditioned upon Your compliance with Section 3.1 below and\n    subject to third party intellectual property claims, each\n    Contributor hereby grants You a world-wide, royalty-free,\n    non-exclusive license:\n\n        (a) under intellectual property rights (other than patent or\n            trademark) Licensable by Contributor to use, reproduce,\n            modify, display, perform, sublicense and distribute the\n            Modifications created by such Contributor (or portions\n            thereof), either on an unmodified basis, with other\n            Modifications, as Covered Software and/or as part of a\n            Larger Work; and\n\n        (b) under Patent Claims infringed by the making, using, or\n            selling of Modifications made by that Contributor either\n            alone and/or in combination with its Contributor Version\n            (or portions of such combination), to make, use, sell,\n            offer for sale, have made, and/or otherwise dispose of:\n            (1) Modifications made by that Contributor (or portions\n            thereof); and (2) the combination of Modifications made by\n            that Contributor with its Contributor Version (or portions\n            of such combination).\n\n        (c) The licenses granted in Sections 2.2(a) and 2.2(b) are\n            effective on the date Contributor first distributes or\n            otherwise makes the Modifications available to a third\n            party.\n\n        (d) Notwithstanding Section 2.2(b) above, no patent license is\n            granted: (1) for any code that Contributor has deleted\n            from the Contributor Version; (2) for infringements caused\n            by: (i) third party modifications of Contributor Version,\n            or (ii) the combination of Modifications made by that\n            Contributor with other software (except as part of the\n            Contributor Version) or other devices; or (3) under Patent\n            Claims infringed by Covered Software in the absence of\n            Modifications made by that Contributor.\n\n3. Distribution Obligations.\n\n    3.1. Availability of Source Code.\n\n    Any Covered Software that You distribute or otherwise make\n    available in Executable form must also be made available in Source\n    Code form and that Source Code form must be distributed only under\n    the terms of this License.  You must include a copy of this\n    License with every copy of the Source Code form of the Covered\n    Software You distribute or otherwise make available.  You must\n    inform recipients of any such Covered Software in Executable form\n    as to how they can obtain such Covered Software in Source Code\n    form in a reasonable manner on or through a medium customarily\n    used for software exchange.\n\n    3.2. Modifications.\n\n    The Modifications that You create or to which You contribute are\n    governed by the terms of this License.  You represent that You\n    believe Your Modifications are Your original creation(s) and/or\n    You have sufficient rights to grant the rights conveyed by this\n    License.\n\n    3.3. Required Notices.\n\n    You must include a notice in each of Your Modifications that\n    identifies You as the Contributor of the Modification.  You may\n    not remove or alter any copyright, patent or trademark notices\n    contained within the Covered Software, or any notices of licensing\n    or any descriptive text giving attribution to any Contributor or\n    the Initial Developer.\n\n    3.4. Application of Additional Terms.\n\n    You may not offer or impose any terms on any Covered Software in\n    Source Code form that alters or restricts the applicable version\n    of this License or the recipients' rights hereunder.  You may\n    choose to offer, and to charge a fee for, warranty, support,\n    indemnity or liability obligations to one or more recipients of\n    Covered Software.  However, you may do so only on Your own behalf,\n    and not on behalf of the Initial Developer or any Contributor.\n    You must make it absolutely clear that any such warranty, support,\n    indemnity or liability obligation is offered by You alone, and You\n    hereby agree to indemnify the Initial Developer and every\n    Contributor for any liability incurred by the Initial Developer or\n    such Contributor as a result of warranty, support, indemnity or\n    liability terms You offer.\n\n    3.5. Distribution of Executable Versions.\n\n    You may distribute the Executable form of the Covered Software\n    under the terms of this License or under the terms of a license of\n    Your choice, which may contain terms different from this License,\n    provided that You are in compliance with the terms of this License\n    and that the license for the Executable form does not attempt to\n    limit or alter the recipient's rights in the Source Code form from\n    the rights set forth in this License.  If You distribute the\n    Covered Software in Executable form under a different license, You\n    must make it absolutely clear that any terms which differ from\n    this License are offered by You alone, not by the Initial\n    Developer or Contributor.  You hereby agree to indemnify the\n    Initial Developer and every Contributor for any liability incurred\n    by the Initial Developer or such Contributor as a result of any\n    such terms You offer.\n\n    3.6. Larger Works.\n\n    You may create a Larger Work by combining Covered Software with\n    other code not governed by the terms of this License and\n    distribute the Larger Work as a single product.  In such a case,\n    You must make sure the requirements of this License are fulfilled\n    for the Covered Software.\n\n4. Versions of the License.\n\n    4.1. New Versions.\n\n    Sun Microsystems, Inc. is the initial license steward and may\n    publish revised and/or new versions of this License from time to\n    time.  Each version will be given a distinguishing version number.\n    Except as provided in Section 4.3, no one other than the license\n    steward has the right to modify this License.\n\n    4.2. Effect of New Versions.\n\n    You may always continue to use, distribute or otherwise make the\n    Covered Software available under the terms of the version of the\n    License under which You originally received the Covered Software.\n    If the Initial Developer includes a notice in the Original\n    Software prohibiting it from being distributed or otherwise made\n    available under any subsequent version of the License, You must\n    distribute and make the Covered Software available under the terms\n    of the version of the License under which You originally received\n    the Covered Software.  Otherwise, You may also choose to use,\n    distribute or otherwise make the Covered Software available under\n    the terms of any subsequent version of the License published by\n    the license steward.\n\n    4.3. Modified Versions.\n\n    When You are an Initial Developer and You want to create a new\n    license for Your Original Software, You may create and use a\n    modified version of this License if You: (a) rename the license\n    and remove any references to the name of the license steward\n    (except to note that the license differs from this License); and\n    (b) otherwise make it clear that the license contains terms which\n    differ from this License.\n\n5. DISCLAIMER OF WARRANTY.\n\n    COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN \"AS IS\"\n    BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,\n    INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED\n    SOFTWARE IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR\n    PURPOSE OR NON-INFRINGING.  THE ENTIRE RISK AS TO THE QUALITY AND\n    PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU.  SHOULD ANY\n    COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE\n    INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY\n    NECESSARY SERVICING, REPAIR OR CORRECTION.  THIS DISCLAIMER OF\n    WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE.  NO USE OF\n    ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS\n    DISCLAIMER.\n\n6. TERMINATION.\n\n    6.1. This License and the rights granted hereunder will terminate\n    automatically if You fail to comply with terms herein and fail to\n    cure such breach within 30 days of becoming aware of the breach.\n    Provisions which, by their nature, must remain in effect beyond\n    the termination of this License shall survive.\n\n    6.2. If You assert a patent infringement claim (excluding\n    declaratory judgment actions) against Initial Developer or a\n    Contributor (the Initial Developer or Contributor against whom You\n    assert such claim is referred to as \"Participant\") alleging that\n    the Participant Software (meaning the Contributor Version where\n    the Participant is a Contributor or the Original Software where\n    the Participant is the Initial Developer) directly or indirectly\n    infringes any patent, then any and all rights granted directly or\n    indirectly to You by such Participant, the Initial Developer (if\n    the Initial Developer is not the Participant) and all Contributors\n    under Sections 2.1 and/or 2.2 of this License shall, upon 60 days\n    notice from Participant terminate prospectively and automatically\n    at the expiration of such 60 day notice period, unless if within\n    such 60 day period You withdraw Your claim with respect to the\n    Participant Software against such Participant either unilaterally\n    or pursuant to a written agreement with Participant.\n\n    6.3. In the event of termination under Sections 6.1 or 6.2 above,\n    all end user licenses that have been validly granted by You or any\n    distributor hereunder prior to termination (excluding licenses\n    granted to You by any distributor) shall survive termination.\n\n7. LIMITATION OF LIABILITY.\n\n    UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT\n    (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE\n    INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF\n    COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE\n    LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR\n    CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT\n    LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, WORK\n    STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER\n    COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN\n    INFORMED OF THE POSSIBILITY OF SUCH DAMAGES.  THIS LIMITATION OF\n    LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL\n    INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT\n    APPLICABLE LAW PROHIBITS SUCH LIMITATION.  SOME JURISDICTIONS DO\n    NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR\n    CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND LIMITATION MAY NOT\n    APPLY TO YOU.\n\n8. U.S. GOVERNMENT END USERS.\n\n    The Covered Software is a \"commercial item,\" as that term is\n    defined in 48 C.F.R. 2.101 (Oct. 1995), consisting of \"commercial\n    computer software\" (as that term is defined at 48\n    C.F.R. 252.227-7014(a)(1)) and \"commercial computer software\n    documentation\" as such terms are used in 48 C.F.R. 12.212\n    (Sept. 1995).  Consistent with 48 C.F.R. 12.212 and 48\n    C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all\n    U.S. Government End Users acquire Covered Software with only those\n    rights set forth herein.  This U.S. Government Rights clause is in\n    lieu of, and supersedes, any other FAR, DFAR, or other clause or\n    provision that addresses Government rights in computer software\n    under this License.\n\n9. MISCELLANEOUS.\n\n    This License represents the complete agreement concerning subject\n    matter hereof.  If any provision of this License is held to be\n    unenforceable, such provision shall be reformed only to the extent\n    necessary to make it enforceable.  This License shall be governed\n    by the law of the jurisdiction specified in a notice contained\n    within the Original Software (except to the extent applicable law,\n    if any, provides otherwise), excluding such jurisdiction's\n    conflict-of-law provisions.  Any litigation relating to this\n    License shall be subject to the jurisdiction of the courts located\n    in the jurisdiction and venue specified in a notice contained\n    within the Original Software, with the losing party responsible\n    for costs, including, without limitation, court costs and\n    reasonable attorneys' fees and expenses.  The application of the\n    United Nations Convention on Contracts for the International Sale\n    of Goods is expressly excluded.  Any law or regulation which\n    provides that the language of a contract shall be construed\n    against the drafter shall not apply to this License.  You agree\n    that You alone are responsible for compliance with the United\n    States export administration regulations (and the export control\n    laws and regulation of any other countries) when You use,\n    distribute or otherwise make available any Covered Software.\n\n10. RESPONSIBILITY FOR CLAIMS.\n\n    As between Initial Developer and the Contributors, each party is\n    responsible for claims and damages arising, directly or\n    indirectly, out of its utilization of rights under this License\n    and You agree to work with Initial Developer and Contributors to\n    distribute such responsibility on an equitable basis.  Nothing\n    herein is intended or shall be deemed to constitute any admission\n    of liability.\n\n--------------------------------------------------------------------\n\nNOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND\nDISTRIBUTION LICENSE (CDDL)\n\nFor Covered Software in this distribution, this License shall\nbe governed by the laws of the State of California (excluding\nconflict-of-law provisions).\n\nAny litigation relating to this License shall be subject to the\njurisdiction of the Federal Courts of the Northern District of\nCalifornia and the state courts of the State of California, with\nvenue lying in Santa Clara County, California.\n"
  },
  {
    "path": "example-dtrace-stacks.txt",
    "content": "CPU     ID                    FUNCTION:NAME\n  0  64091                        :tick-60s \n\n\n              genunix`kmem_cpu_reload+0x20\n              genunix`kmem_cache_free+0xce\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`cv_broadcast+0x1\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`tsc_gethrtimeunscaled+0x21\n              genunix`gethrtime_unscaled+0xa\n              genunix`syscall_mstate+0x5d\n              unix`sys_syscall+0x10e\n                1\n\n              unix`mutex_exit+0x12\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`mutex_exit+0x12\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`mutex_init+0x32\n              genunix`rwst_init+0x38\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`tsc_read+0x3\n              unix`mutex_vector_enter+0xcc\n              genunix`lookuppnatcred+0x89\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              zfs`zfs_lookup+0xa5\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`lookupnameatcred+0x76\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`fop_lookup+0x16\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_alloc+0x46\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`crfree+0x76\n              genunix`unfalloc+0x4a\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_rele+0x27\n              genunix`lookuppnvp+0x39f\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`fop_lookup+0x118\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`dispatch_hilevel+0x18\n              unix`do_interrupt+0x120\n              unix`_interrupt+0xba\n              unix`strlen+0x10\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cpu_reload+0x28\n              genunix`kmem_cache_free+0xce\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cpu_reload+0x28\n              genunix`kmem_cache_free+0xce\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              ufs`ufs_lookup+0x48\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`lookuppnvp+0x1f9\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_alloc+0x49\n              genunix`vn_alloc+0x1a\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_alloc+0x49\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`mutex_exit+0x19\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`mutex_init+0x39\n              genunix`rwst_init+0x38\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`ufalloc_file+0x4b\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`setf+0xfb\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_free+0xb\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_rele+0x2c\n              genunix`lookuppnvp+0x39f\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`fop_lookup+0x1d\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cpu_reload+0x2d\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cpu_reload+0x2d\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_alloc+0x4e\n              genunix`kmem_zalloc+0x47\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`dnlc_lookup+0xef\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`sigcheck+0x20\n              genunix`post_syscall+0x3d3\n              unix`0xfffffffffb800c91\n                1\n\n              ufs`ufs_getpage+0x1\n              genunix`segvn_fault+0xdfa\n              genunix`as_fault+0x36a\n              unix`pagefault+0x96\n              unix`trap+0x2c7\n              unix`0xfffffffffb8001d6\n                1\n\n              genunix`dnlc_lookup+0xf2\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`pn_get_buf+0x13\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              zfs`specvp_check+0x24\n              zfs`zfs_lookup+0xf4\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`openat+0x25\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_alloc+0x56\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`post_syscall+0x1b7\n              unix`0xfffffffffb800c91\n                1\n\n              genunix`cv_broadcast+0x17\n              genunix`rwst_exit+0x8f\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              zfs`zfs_fastaccesschk_execute+0x47\n              zfs`zfs_lookup+0xc2\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              lofs`table_lock_enter+0x8\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_recycle+0x98\n              genunix`vn_reinit+0x7b\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              zfs`specvp_check+0x29\n              zfs`zfs_lookup+0xf4\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`fop_lookup+0x129\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_alloc+0x5a\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              lofs`table_lock_enter+0xc\n              lofs`makelonode+0x36\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_rele+0x3d\n              genunix`lookuppnvp+0x39f\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`mtype_func+0x8e\n              unix`page_get_mnode_freelist+0x4f\n              unix`page_get_freelist+0x16d\n              unix`page_create_va+0x2ad\n              genunix`pvn_read_kluster+0x10c\n              ufs`ufs_getpage_ra+0x11c\n              ufs`ufs_getpage+0x866\n              genunix`fop_getpage+0x7e\n              genunix`segvn_faulta+0x12b\n              genunix`as_faulta+0x143\n              genunix`memcntl+0x53d\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`post_syscall+0x1bf\n              unix`0xfffffffffb800c91\n                1\n\n              genunix`lookuppnvp+0xf\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`dnlc_lookup+0x100\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`dnlc_lookup+0x104\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`copen+0x1a6\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              zfs`zfs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`setbackdq+0x258\n              FSS`fss_preempt+0x241\n              unix`preempt+0xd6\n              genunix`post_syscall+0x4cd\n              unix`0xfffffffffb800c91\n                1\n\n              genunix`kmem_cache_alloc+0x6a\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`fd_find+0x9c\n              genunix`ufalloc_file+0x91\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`thread_lock+0x3f\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n                1\n\n              genunix`disp_lock_exit+0x20\n              genunix`post_syscall+0x318\n              unix`0xfffffffffb800c91\n                1\n\n              genunix`segvn_fault\n              unix`pagefault+0x96\n              unix`trap+0x2c7\n              unix`0xfffffffffb8001d6\n                1\n\n              lofs`lo_root+0x22\n              genunix`fsop_root+0x2d\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_alloc+0x73\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              lofs`lo_lookup+0x54\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`open+0x14\n              unix`sys_syscall+0x17a\n                1\n\n              unix`htable_lookup+0x44\n              unix`htable_walk+0x17e\n              unix`hat_unload_callback+0x138\n              genunix`segvn_unmap+0x5b7\n              genunix`as_unmap+0x19c\n              unix`mmapobj_map_elf+0x147\n              unix`mmapobj_map_interpret+0x22c\n              unix`mmapobj+0x71\n              genunix`mmapobjsys+0x1d0\n              unix`sys_syscall+0x17a\n                1\n\n              lofs`freelonode+0x1f9\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_free+0x3a\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_free+0x3a\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_vfslocks_getlock+0xc\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`dnlc_lookup+0x11e\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_rele+0x60\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`lookuppnvp+0x330\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_free+0xb0\n              genunix`unfalloc+0x61\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_mountedvfs+0x1\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_vfslocks_getlock+0x13\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`pn_getcomponent+0x84\n              genunix`lookuppnvp+0x16d\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`bcopy+0x244\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_alloc+0x84\n              genunix`kmem_alloc+0x4b\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_free+0xb4\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              ufs`ufs_lookup+0x84\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`audit_falloc+0x6\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`bcopy+0x248\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`lookuppnvp+0x138\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_alloc+0x89\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`lookuppnvp+0x23a\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`disp_lock_exit+0x3b\n              genunix`post_syscall+0x318\n              unix`0xfffffffffb800c91\n                1\n\n              genunix`vn_vfslocks_getlock+0x1b\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`fd_reserve+0xb\n              genunix`ufalloc_file+0x103\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              lofs`table_lock_enter+0x3c\n              lofs`makelonode+0x36\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              lofs`table_lock_enter+0x3c\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_alloc+0x8d\n              genunix`vn_alloc+0x1a\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_alloc+0x8d\n              genunix`kmem_alloc+0x4b\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_free+0xbd\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_vfslocks_getlock+0x1f\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_reinit+0xf\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`syscall_mstate+0xff\n              unix`0xfffffffffb800c86\n                1\n\n              unix`page_numtopp_nolock+0x130\n              unix`hat_pte_unmap+0xb8\n              unix`hat_unload_callback+0x259\n              genunix`segvn_unmap+0x5b7\n              genunix`as_free+0xdc\n              genunix`relvm+0x220\n              genunix`proc_exit+0x444\n              genunix`exit+0x15\n              genunix`rexit+0x18\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_mountedvfs+0x10\n              genunix`lookuppnvp+0x217\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`rwst_exit\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`rwst_exit+0x1\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_free+0x52\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_openat+0x83\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              lofs`table_lock_enter+0x45\n              lofs`makelonode+0x36\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_exists+0x15\n              lofs`makelonode+0x1e7\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`setbackdq+0x286\n              FSS`fss_preempt+0x241\n              unix`preempt+0xd6\n              genunix`post_syscall+0x4cd\n              unix`0xfffffffffb800c91\n                1\n\n              genunix`vn_openat+0x486\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_openat+0x87\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_free+0x57\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`mutex_destroy+0x78\n              genunix`rwst_destroy+0x1c\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_vfslocks_getlock+0x29\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_openat+0x48a\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`lookuppnatcred+0x13a\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`rwst_init+0x1b\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`mutex_destroy+0x7b\n              genunix`rwst_destroy+0x1c\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`cv_init+0xd\n              genunix`rwst_init+0x47\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`cv_init+0xd\n              genunix`rwst_init+0x56\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_vfslocks_getlock+0x2d\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_free+0xce\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`lwp_getdatamodel+0xf\n              genunix`post_syscall+0x2f5\n              unix`0xfffffffffb800c91\n                1\n\n              unix`prunstop\n              unix`0xfffffffffb800c91\n                1\n\n              unix`hment_compare+0x10\n              genunix`avl_find+0x72\n              genunix`avl_add+0x27\n              unix`hment_insert+0x8b\n              unix`hment_assign+0x3a\n              unix`hati_pte_map+0x343\n              unix`hati_load_common+0x139\n              unix`hat_memload+0x75\n              unix`hat_memload_region+0x25\n              genunix`segvn_fault+0x1079\n              genunix`as_fault+0x36a\n              unix`pagefault+0x96\n              unix`trap+0x2c7\n              unix`0xfffffffffb8001d6\n                1\n\n              unix`bcopy+0x260\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`syscall_mstate+0x10\n              unix`sys_syscall+0x1a1\n                1\n\n              genunix`cv_init+0x11\n              genunix`rwst_init+0x47\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`cv_init+0x11\n              genunix`rwst_init+0x56\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`rwst_init+0x21\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`rwst_init+0x21\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`copen+0x1e2\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`membar_enter+0x3\n              unix`disp+0x11e\n              unix`swtch+0xba\n              unix`preempt+0xec\n              genunix`post_syscall+0x4cd\n              unix`0xfffffffffb800c91\n                1\n\n              lofs`table_lock_enter+0x54\n              lofs`makelonode+0x36\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_openat+0x94\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`pn_getcomponent+0xa5\n              genunix`lookuppnvp+0x16d\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_vfslocks_getlock+0x35\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`cpucaps_charge+0x75\n              FSS`fss_preempt+0x12f\n              unix`preempt+0xd6\n              genunix`post_syscall+0x4cd\n              unix`0xfffffffffb800c91\n                1\n\n              unix`bcopy+0x268\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`lookuppnvp+0x58\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`rwst_enter_common+0x1e8\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_vfslocks_getlock+0x39\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_alloc+0xd9\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`lwp_getdatamodel+0x19\n              genunix`post_syscall+0x2f5\n              unix`0xfffffffffb800c91\n                1\n\n              unix`lwp_getdatamodel+0x1a\n              unix`0xfffffffffb800c91\n                1\n\n              genunix`fop_lookup+0x7b\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`fop_lookup+0x7b\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_free+0xdb\n              genunix`unfalloc+0x61\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`crgetuid+0xb\n              ufs`ufs_iaccess+0xe5\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_vfslocks_getlock+0x3c\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`copen+0xed\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`cv_init+0x1d\n              genunix`rwst_init+0x56\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              lofs`freelonode+0x2f\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`pn_getcomponent+0xb0\n              genunix`lookuppnvp+0x16d\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`ufalloc_file+0xb0\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`syscall_mstate+0x22\n              unix`0xfffffffffb800c86\n                1\n\n              genunix`audit_falloc+0x34\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`cv_broadcast+0x76\n              genunix`rwst_exit+0x8f\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`lock_try+0x6\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n                1\n\n              genunix`set_errno+0x17\n              genunix`copen+0x4fa\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`copen+0x1f8\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`pn_getcomponent+0xba\n              genunix`lookuppnvp+0x16d\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`syscall_mstate+0x2a\n              unix`0xfffffffffb800c86\n                1\n\n              genunix`post_syscall+0x21b\n              unix`0xfffffffffb800c91\n                1\n\n              genunix`lookuppnatcred+0x5b\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`post_syscall+0x1b\n              unix`0xfffffffffb800c91\n                1\n\n              unix`prunstop+0x1c\n              unix`0xfffffffffb800c91\n                1\n\n              genunix`dnlc_lookup+0x5c\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookuppn+0x38\n              genunix`resolvepath+0x86\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_free+0xed\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_free+0xed\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_free+0xed\n              genunix`kmem_free+0x4e\n              genunix`removectx+0xf5\n              genunix`schedctl_lwp_cleanup+0x8e\n              genunix`exitlwps+0x73\n              genunix`proc_exit+0x59\n              genunix`exit+0x15\n              genunix`rexit+0x18\n              unix`sys_syscall+0x17a\n                1\n\n              lofs`freelonode+0x23f\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`dnlc_lookup+0x160\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`copen+0x1\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_invalid+0x1\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_invalid+0x1\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`rwst_enter_common+0x1\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`do_splx+0x1\n              unix`preempt+0xec\n              genunix`post_syscall+0x4cd\n              unix`0xfffffffffb800c91\n                1\n\n              genunix`crhold+0x11\n              genunix`falloc+0xbc\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`dnlc_lookup+0x65\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              zfs`zfs_lookup+0x25\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`lookuppnatcred+0x66\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`cv_destroy+0x8\n              genunix`rwst_destroy+0x25\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_setpath+0xc9\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`lookuppnatcred+0x6a\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_free+0xfa\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`cv_destroy+0xc\n              genunix`rwst_destroy+0x25\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_recycle+0xc\n              genunix`vn_reinit+0x7b\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`fop_lookup+0x9c\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_vfslocks_getlock+0x5d\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`lookuppnvp+0x7d\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`syscall_mstate+0x13d\n              unix`0xfffffffffb800c86\n                1\n\n              genunix`syscall_mstate+0x13d\n              unix`sys_syscall+0x1a1\n                1\n\n              genunix`lookuppnatcred+0x6e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_reinit+0x4f\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`pn_fixslash+0x40\n              genunix`lookuppnvp+0x105\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`do_splx+0x10\n              genunix`disp_lock_exit+0x47\n              genunix`post_syscall+0x318\n              unix`0xfffffffffb800c91\n                1\n\n              genunix`kmem_cache_free\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_free\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`thread_lock+0xa1\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n                1\n\n              genunix`memcmp+0x1\n              genunix`dnlc_lookup+0x10d\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`rwst_exit+0x41\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              doorfs`door_close+0x1\n              namefs`nm_close+0xac\n              genunix`fop_close+0x61\n              genunix`closef+0x5e\n              genunix`close_exec+0xfd\n              genunix`exec_common+0x7e4\n              genunix`exece+0x1b\n              unix`_sys_sysenter_post_swapgs+0x149\n                1\n\n              unix`cpucaps_charge+0xa2\n              FSS`fss_preempt+0x12f\n              unix`preempt+0xd6\n              genunix`post_syscall+0x4cd\n              unix`0xfffffffffb800c91\n                1\n\n              genunix`vn_vfslocks_rele+0x23\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`setf+0x83\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`dotoprocs+0xc4\n              genunix`doprio+0x77\n              genunix`priocntl_common+0x616\n              genunix`priocntlsys+0x24\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_alloc+0x4\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`syscall_mstate+0x45\n              unix`sys_syscall+0x10e\n                1\n\n              genunix`setf+0x87\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`lock_clear_splx+0x7\n              genunix`post_syscall+0x318\n              unix`0xfffffffffb800c91\n                1\n\n              genunix`fop_lookup+0xaa\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`fd_find+0xb\n              genunix`ufalloc_file+0x91\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`pn_fixslash+0x4c\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_free+0xc\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_vfslocks_getlock+0x6e\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_zalloc+0x1e\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`post_syscall+0x13e\n              unix`0xfffffffffb800c91\n                1\n\n              genunix`copen+0x20\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`traverse+0x10\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_free+0x10\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_free+0x10\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_free+0x10\n              genunix`kmem_free+0x4e\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              FSS`fss_preempt\n              genunix`post_syscall+0x4cd\n              unix`0xfffffffffb800c91\n                1\n\n              genunix`vn_recycle+0x21\n              genunix`vn_reinit+0x7b\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`crfree+0x11\n              genunix`unfalloc+0x4a\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`rwst_enter_common+0x22\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`memcmp+0x13\n              unix`bcmp+0x9\n              genunix`dnlc_lookup+0x10d\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              zfs`zfs_lookup+0x43\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`syscall_mstate+0x153\n              unix`sys_syscall+0x1a1\n                1\n\n              genunix`lookuppnatcred+0x84\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`crfree+0x15\n              genunix`unfalloc+0x4a\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`bitset_in_set+0x6\n              unix`cpu_wakeup_mwait+0x40\n              unix`setbackdq+0x200\n              FSS`fss_preempt+0x241\n              unix`preempt+0xd6\n              genunix`post_syscall+0x4cd\n              unix`0xfffffffffb800c91\n                1\n\n              genunix`dnlc_lookup+0x186\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_zalloc+0x26\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`hment_insert+0x37\n              unix`hment_assign+0x3a\n              unix`hati_pte_map+0x343\n              unix`hati_load_common+0x139\n              unix`hat_memload+0x75\n              unix`hat_memload_region+0x25\n              genunix`segvn_fault+0x1079\n              genunix`as_fault+0x36a\n              unix`pagefault+0x96\n              unix`trap+0x2c7\n              unix`0xfffffffffb8001d6\n                1\n\n              genunix`kmem_cache_free+0x17\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`setf+0x98\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`post_syscall+0x34b\n              unix`0xfffffffffb800c91\n                1\n\n              genunix`traverse+0x1c\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`rwst_enter_common+0x2d\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_zalloc+0x2d\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`setbackdq+0x3de\n              FSS`fss_preempt+0x241\n              unix`preempt+0xd6\n              genunix`post_syscall+0x4cd\n              unix`0xfffffffffb800c91\n                1\n\n              lofs`lo_inactive+0x1e\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_free+0x9e\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`lookupnameatcred+0x1e\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`lookuppnvp+0x39f\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`falloc+0xaf\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`fd_find+0x21\n              genunix`ufalloc_file+0x91\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`dnlc_lookup+0x92\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_free+0x22\n              genunix`kmem_free+0x4e\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_free+0x22\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`secpolicy_vnode_access2+0x222\n              ufs`ufs_iaccess+0x128\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_free+0xa3\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`cmt_balance+0xc3\n              unix`setbackdq+0x3a3\n              FSS`fss_preempt+0x241\n              unix`preempt+0xd6\n              genunix`post_syscall+0x4cd\n              unix`0xfffffffffb800c91\n                1\n\n              genunix`rwst_enter_common+0x335\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_recycle+0x36\n              genunix`vn_reinit+0x7b\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`lookuppnvp+0x3a7\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`syscall_mstate+0x167\n              unix`sys_syscall+0x1a1\n                1\n\n              ufs`ufs_lookup+0xf7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`mutex_delay_default+0x7\n              unix`mutex_vector_enter+0xcc\n              genunix`lookuppnatcred+0x89\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`page_create_va+0x218\n              genunix`pvn_read_kluster+0x10c\n              ufs`ufs_getpage_ra+0x11c\n              ufs`ufs_getpage+0x866\n              genunix`fop_getpage+0x7e\n              genunix`segvn_faulta+0x12b\n              genunix`as_faulta+0x143\n              genunix`memcntl+0x53d\n              unix`sys_syscall+0x17a\n                1\n\n              lofs`makelonode+0x6a\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`unfalloc+0x1a\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`fop_lookup+0x1cb\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`fop_lookup+0x1cb\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_free+0x2b\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vmem_free+0x2b\n              genunix`segkp_release_internal+0x1ab\n              genunix`segkp_release+0xa0\n              genunix`schedctl_freepage+0x34\n              genunix`schedctl_proc_cleanup+0x68\n              genunix`proc_exit+0x1ab\n              genunix`exit+0x15\n              genunix`rexit+0x18\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`crgetmapped+0xb\n              genunix`fop_lookup+0x1dc\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`copystr+0x2e\n              genunix`pn_get_buf+0x43\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_free+0x2f\n              genunix`unfalloc+0x61\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_free+0x2f\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`crgetmapped+0xf\n              genunix`fop_lookup+0x1dc\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_alloc+0x100\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_alloc+0x100\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              ufs`ufs_lookup+0x100\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              lofs`makelonode+0x71\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_openat+0xf1\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_vfsrlock+0x31\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`ufalloc_file+0x1\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`swtch+0x14\n              unix`preempt+0xec\n              unix`kpreempt+0x98\n              unix`sys_rtt_common+0x1ba\n              unix`_sys_rtt_ints_disabled+0x8\n              genunix`audit_getstate\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_recycle+0x45\n              genunix`vn_reinit+0x7b\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_vfslocks_rele+0x57\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_free+0x37\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              zfs`zfs_lookup+0x68\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`lookupnameatcred+0x3a\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_free+0x3a\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`schedctl_save+0x1b\n              genunix`savectx+0x35\n              unix`resume+0x5b\n              unix`swtch+0x141\n              unix`preempt+0xec\n              genunix`post_syscall+0x4cd\n              unix`0xfffffffffb800c91\n                1\n\n              genunix`dnlc_lookup+0xac\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vsd_free+0xdc\n              genunix`vn_recycle+0xb5\n              genunix`vn_reinit+0x7b\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vsd_free+0xdc\n              genunix`vn_free+0x8b\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`thread_lock+0xdd\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n                1\n\n              lofs`freelonode+0x18e\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              ufs`ufs_lookup+0xf\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              ufs`ufs_lookup+0x10f\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`pn_getcomponent+0x10\n              genunix`lookuppnvp+0x16d\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_alloc+0x110\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`mutex_enter\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`mutex_enter\n              genunix`kmem_zalloc+0x47\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`lgrp_mem_choose+0x1\n              genunix`swap_getapage+0x113\n              genunix`swap_getpage+0x90\n              genunix`fop_getpage+0x7e\n              genunix`anon_zero+0xb6\n              genunix`segvn_faultpage+0x6d2\n              genunix`segvn_fault+0x8e6\n              genunix`as_fault+0x36a\n              unix`pagefault+0x96\n              unix`trap+0x2c7\n              unix`0xfffffffffb8001d6\n                1\n\n              genunix`audit_getstate+0x1\n              unix`0xfffffffffb800c91\n                1\n\n              genunix`rwst_destroy+0x32\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`disp_lock_exit_high+0x33\n              unix`swtch+0xba\n              unix`preempt+0xec\n              genunix`post_syscall+0x4cd\n              unix`0xfffffffffb800c91\n                1\n\n              genunix`lookuppnvp+0x3c3\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              ufs`ufs_lookup+0x13\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`syscall_mstate+0x84\n              unix`sys_syscall+0x1a1\n                1\n\n              zfs`zfs_lookup+0x76\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`unfalloc+0x37\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_alloc+0x118\n              genunix`vn_alloc+0x1a\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              lofs`lo_lookup+0x2f9\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vsd_free+0xe9\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`mutex_enter+0x9\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`mutex_enter+0x9\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`mutex_enter+0x9\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`mutex_enter+0x9\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`rwst_exit+0x8a\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_zalloc+0x5a\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_alloc+0x1b\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`copen+0x15c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`unfalloc+0x3c\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              zfs`zfs_fastaccesschk_execute+0xc\n              zfs`zfs_lookup+0xc2\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`audit_getstate+0xd\n              genunix`setf+0x3f\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`audit_getstate+0xd\n              genunix`lookuppnvp+0x82\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              zfs`zfs_lookup+0x7e\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`traverse+0x4e\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_alloc+0x1e\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`hwblkclr+0x3f\n              unix`pfnzero+0x78\n              unix`pagezero+0x2d\n              genunix`anon_zero+0xd2\n              genunix`segvn_faultpage+0x6d2\n              genunix`segvn_fault+0x8e6\n              genunix`as_fault+0x36a\n              unix`pagefault+0x96\n              unix`trap+0x2c7\n              unix`0xfffffffffb8001d6\n                1\n\n              unix`tsc_gethrtimeunscaled\n              genunix`mstate_thread_onproc_time+0x59\n              unix`caps_charge_adjust+0x32\n              unix`cpucaps_charge+0x58\n              FSS`fss_preempt+0x12f\n              unix`preempt+0xd6\n              genunix`post_syscall+0x4cd\n              unix`0xfffffffffb800c91\n                1\n\n              unix`page_lookup_create+0xf0\n              unix`page_lookup+0x21\n              genunix`swap_getapage+0xea\n              genunix`swap_getpage+0x90\n              genunix`fop_getpage+0x7e\n              genunix`anon_zero+0xb6\n              genunix`segvn_faultpage+0x6d2\n              genunix`segvn_fault+0x8e6\n              genunix`as_fault+0x36a\n              unix`pagefault+0x96\n              unix`trap+0x2c7\n              unix`0xfffffffffb8001d6\n                1\n\n              unix`page_lookup_create+0xf0\n              unix`page_lookup+0x21\n              ufs`ufs_getpage+0x762\n              genunix`fop_getpage+0x7e\n              genunix`segvn_fault+0xdfa\n              genunix`as_fault+0x36a\n              unix`pagefault+0x96\n              unix`trap+0x2c7\n              unix`0xfffffffffb8001d6\n                1\n\n              unix`mutex_enter+0x10\n              unix`page_get_mnode_freelist+0x32c\n              unix`page_get_freelist+0x16d\n              unix`page_create_va+0x2ad\n              genunix`swap_getapage+0x113\n              genunix`swap_getpage+0x90\n              genunix`fop_getpage+0x7e\n              genunix`anon_zero+0xb6\n              genunix`segvn_faultpage+0x6d2\n              genunix`segvn_fault+0x8e6\n              genunix`as_fault+0x36a\n              unix`pagefault+0x96\n              unix`trap+0x2c7\n              unix`0xfffffffffb8001d6\n                1\n\n              unix`mutex_enter+0x10\n              unix`page_get_mnode_freelist+0x32c\n              unix`page_get_freelist+0x16d\n              unix`page_create_va+0x2ad\n              genunix`pvn_read_kluster+0x10c\n              ufs`ufs_getpage_ra+0x11c\n              ufs`ufs_getpage+0x866\n              genunix`fop_getpage+0x7e\n              genunix`segvn_faulta+0x12b\n              genunix`as_faulta+0x143\n              genunix`memcntl+0x53d\n              unix`sys_syscall+0x17a\n                1\n\n              ufs`ufs_iaccess+0x91\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_rele+0x1\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`fop_lookup+0xf1\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`mutex_destroy+0x1\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`mutex_destroy+0x1\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`rwst_enter_common+0x162\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`pvn_plist_init+0x42\n              genunix`swap_getapage+0x323\n              genunix`swap_getpage+0x90\n              genunix`fop_getpage+0x7e\n              genunix`anon_zero+0xb6\n              genunix`segvn_faultpage+0x6d2\n              genunix`segvn_fault+0x8e6\n              genunix`as_fault+0x36a\n              unix`pagefault+0x96\n              unix`trap+0x2c7\n              unix`0xfffffffffb8001d6\n                1\n\n              genunix`kmem_cache_alloc+0x22\n              genunix`vn_alloc+0x1a\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_alloc+0x22\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`copen+0x63\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`do_splx+0x65\n              unix`swtch+0x17c\n              unix`preempt+0xec\n              genunix`post_syscall+0x4cd\n              unix`0xfffffffffb800c91\n                1\n\n              unix`do_splx+0x65\n              genunix`disp_lock_exit_nopreempt+0x42\n              unix`preempt+0xe7\n              unix`kpreempt+0x98\n              genunix`disp_lock_exit+0x6f\n              genunix`post_syscall+0x318\n              unix`0xfffffffffb800c91\n                1\n\n              unix`mutex_enter+0x16\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`cpu_decay+0x27\n              genunix`cpu_grow+0x24\n              genunix`cpu_update_pct+0x86\n              genunix`new_mstate+0x73\n              unix`trap+0x63e\n              unix`sys_rtt_common+0x55\n              unix`_sys_rtt_ints_disabled+0x8\n                1\n\n              unix`tsc_gethrtimeunscaled+0x8\n              genunix`gethrtime_unscaled+0xa\n              genunix`syscall_mstate+0x5d\n              unix`sys_syscall+0x10e\n                1\n\n              unix`do_splx+0x68\n              genunix`disp_lock_exit+0x47\n              genunix`post_syscall+0x318\n              unix`0xfffffffffb800c91\n                1\n\n              genunix`traverse+0x5a\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_alloc+0x2a\n              genunix`kmem_zalloc+0x47\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`mutex_init+0x1b\n              genunix`rwst_init+0x38\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_rele+0xc\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`mutex_destroy+0xc\n              genunix`rwst_destroy+0x1c\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`mutex_destroy+0xc\n              genunix`rwst_destroy+0x1c\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              lofs`lo_lookup+0xf\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              lofs`freelonode+0x1b0\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_rele+0x10\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`openat+0x1\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`as_fault+0x381\n              unix`pagefault+0x96\n              unix`trap+0x2c7\n              unix`0xfffffffffb8001d6\n                1\n\n              genunix`vn_vfsunlock+0x1\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`audit_getstate+0x21\n              genunix`copen+0x59\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`hwblkclr+0x52\n              unix`pfnzero+0x78\n              unix`pagezero+0x2d\n              genunix`anon_zero+0xd2\n              genunix`segvn_faultpage+0x6d2\n              genunix`segvn_fault+0x8e6\n              genunix`as_fault+0x36a\n              unix`pagefault+0x96\n              unix`trap+0x2c7\n              unix`0xfffffffffb8001d6\n                1\n\n              genunix`fop_lookup+0x103\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_alloc+0x33\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`savectx+0x24\n              unix`resume+0x5b\n              unix`swtch+0x141\n              unix`preempt+0xec\n              genunix`post_syscall+0x4cd\n              unix`0xfffffffffb800c91\n                1\n\n              genunix`kmem_cache_alloc+0x37\n              genunix`falloc+0x63\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`kmem_cache_alloc+0x37\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`thread_lock+0x8\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n                1\n\n              genunix`lookuppnvp+0xe9\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`mutex_exit+0x9\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`mutex_exit+0x9\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`mutex_exit+0x9\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              unix`hwblkclr+0x5b\n              unix`pfnzero+0x78\n              unix`pagezero+0x2d\n              genunix`anon_zero+0xd2\n              genunix`segvn_faultpage+0x6d2\n              genunix`segvn_fault+0x8e6\n              genunix`as_fault+0x36a\n              unix`pagefault+0x96\n              unix`trap+0x2c7\n              unix`0xfffffffffb8001d6\n                1\n\n              genunix`vn_vfsunlock+0xc\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`audit_getstate+0x2d\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              lofs`lo_lookup+0x1e\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`syscall_mstate+0x1ae\n              unix`sys_syscall+0x1a1\n                1\n\n              genunix`kmem_cache_alloc+0x3e\n              genunix`vn_alloc+0x1a\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_rele+0x1f\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                1\n\n              genunix`vn_vfsunlock+0x10\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_vfsunlock+0x10\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`audit_getstate+0x30\n              unix`0xfffffffffb800c91\n                2\n\n              genunix`kmem_cache_free+0x70\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`pn_get_buf+0x1\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`mutex_exit+0x12\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`mutex_exit+0x12\n              lofs`freelonode+0x1fe\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`fd_find+0x73\n              genunix`ufalloc_file+0x91\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`audit_getstate+0x33\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`audit_getstate+0x33\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_rele+0x24\n              genunix`traverse+0x9f\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_setpath+0x144\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`syscall_mstate+0xb4\n              unix`sys_syscall+0x10e\n                2\n\n              genunix`lookuppnvp+0xf5\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              zfs`zfs_fastaccesschk_execute+0x35\n              zfs`zfs_lookup+0xc2\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_setpath+0x46\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`tsc_read+0x7\n              genunix`gethrtime_unscaled+0xa\n              genunix`syscall_mstate+0x5d\n              unix`0xfffffffffb800c86\n                2\n\n              genunix`cv_broadcast+0x8\n              genunix`rwst_exit+0x8f\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`cv_broadcast+0x8\n              genunix`rwst_exit+0x8f\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`mutex_exit+0x19\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`mutex_init+0x39\n              genunix`rwst_init+0x38\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`bcopy+0xa\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`post_syscall+0x1ab\n              unix`0xfffffffffb800c91\n                2\n\n              genunix`kmem_free+0xb\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`copen+0x8d\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`lookupnameatcred+0x7e\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`sys_syscall+0x104\n                2\n\n              genunix`kmem_free+0xf\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_free\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`disp_lock_exit+0x1\n              unix`0xfffffffffb800c91\n                2\n\n              genunix`vn_rele+0x31\n              genunix`traverse+0x9f\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_rele+0x31\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              lofs`lo_lookup+0x132\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`lookupnameatcred+0x82\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`traverse+0x82\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_cache_free+0x82\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`falloc+0x13\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`tsc_gethrtimeunscaled+0x34\n              genunix`syscall_mstate+0x5d\n              unix`0xfffffffffb800ca0\n                2\n\n              unix`tsc_gethrtimeunscaled+0x34\n              genunix`syscall_mstate+0x5d\n              unix`sys_syscall+0x1a1\n                2\n\n              genunix`falloc+0x15\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`dnlc_lookup+0xf6\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_cache_alloc+0x56\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`cv_broadcast+0x17\n              genunix`rwst_exit+0x8f\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              lofs`lo_root+0x8\n              genunix`fsop_root+0x2d\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`disp_lock_exit+0x8\n              genunix`post_syscall+0x318\n              unix`0xfffffffffb800c91\n                2\n\n              genunix`setf+0x8\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`lookuppnvp+0x209\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`pn_get_buf+0x1b\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_openat+0x4b\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`cv_broadcast+0x1b\n              genunix`setf+0x8c\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_free+0x1b\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`disp_lock_exit+0xc\n              genunix`post_syscall+0x318\n              unix`0xfffffffffb800c91\n                2\n\n              lofs`freelonode+0x1de\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_rele+0x3e\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`copen+0x19f\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`setf+0x10\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`fop_lookup+0x131\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`copen+0x1a2\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              lofs`table_lock_enter+0x13\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_free+0x26\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_free+0x26\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_free+0x26\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`fop_lookup+0x139\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`lookuppnvp+0x1a\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              lofs`table_lock_enter+0x1b\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              lofs`lo_root+0x1b\n              genunix`fsop_root+0x2d\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`fsop_root+0x3b\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`setf+0x1b\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`lookuppnatcred+0xf\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              zfs`zfs_fastaccesschk_execute+0x5f\n              zfs`zfs_lookup+0xc2\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_vfslocks_getlock+0x1\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`open+0x12\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`dnlc_lookup+0x113\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`setf+0x123\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`copen+0x1b4\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`ufalloc+0x6\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_cache_alloc+0x77\n              genunix`kmem_zalloc+0x47\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_cache_alloc+0x77\n              genunix`vn_alloc+0x1a\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_cache_alloc+0x77\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`bzero+0x188\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              lofs`freelonode+0x1fe\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`ufalloc+0xe\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              lofs`freelonode\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`bcopy+0x240\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_free+0x32\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_rele+0x63\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_vfslocks_getlock+0x13\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_free+0x43\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n                2\n\n              genunix`fsop_root+0x56\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`rw_enter+0x26\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`copen+0x1c7\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_vfslocks_getlock+0x17\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              zfs`zfs_lookup+0xe8\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`lookuppnatcred+0x29\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`lookuppnatcred+0x129\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_cache_alloc+0x89\n              genunix`kmem_zalloc+0x47\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_vfslocks_getlock+0x1b\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              zfs`zfs_lookup+0xec\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_cache_free+0xbd\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`audit_falloc+0xe\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_cache_free+0xc0\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`lwp_getdatamodel\n              unix`0xfffffffffb800c91\n                2\n\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`rwst_enter_common+0x2d3\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`syscall_mstate+0x203\n              unix`0xfffffffffb800ca0\n                2\n\n              unix`mutex_destroy+0x74\n              genunix`rwst_destroy+0x1c\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`fd_reserve+0x17\n              genunix`ufalloc_file+0x103\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_free+0x57\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_free+0x57\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`bcopy+0x258\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`syscall_mstate+0x108\n              unix`0xfffffffffb800c86\n                2\n\n              genunix`rwst_exit+0x8\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              lofs`freelonode+0x1b\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`rwst_enter_common+0x2db\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`mutex_destroy+0x7b\n              genunix`rwst_destroy+0x1c\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_vfslocks_getlock+0x2d\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_exists+0x1f\n              lofs`makelonode+0x1e7\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`hment_compare+0x10\n              genunix`avl_find+0x72\n              unix`hment_remove+0xac\n              unix`hat_pte_unmap+0x159\n              unix`hat_unload_callback+0xe8\n              genunix`segvn_unmap+0x5b7\n              genunix`as_free+0xdc\n              genunix`relvm+0x220\n              genunix`proc_exit+0x444\n              genunix`exit+0x15\n              genunix`rexit+0x18\n              unix`sys_syscall+0x17a\n                2\n\n              lofs`lo_lookup+0x80\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`set_errno+0x1\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`cv_init+0x11\n              genunix`rwst_init+0x47\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              ufs`ufs_iaccess+0x12\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`rwst_enter_common+0x1e2\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`mutex_destroy+0x84\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`cv_init+0x15\n              genunix`rwst_init+0x56\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`set_errno+0x6\n              genunix`copen+0x4fa\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`lookuppnatcred+0x46\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              lofs`lo_root+0x58\n              genunix`fsop_root+0x2d\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`copen+0x1e8\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`crgetuid+0x8\n              zfs`zfs_fastaccesschk_execute+0x2e\n              zfs`zfs_lookup+0xc2\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_vfslocks_getlock+0x39\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_vfslocks_getlock+0x39\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_vfslocks_getlock+0x39\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`gethrtime_unscaled+0xa\n              genunix`syscall_mstate+0x5d\n              unix`sys_syscall+0x10e\n                2\n\n              lofs`freelonode+0x2b\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`syscall_mstate+0x1b\n              unix`0xfffffffffb800c86\n                2\n\n              genunix`kmem_cache_free+0xdb\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`post_syscall+0xb\n              unix`0xfffffffffb800c91\n                2\n\n              genunix`vn_vfslocks_getlock+0x3c\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              lofs`lsave+0x4e\n              lofs`makelonode+0x1df\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`copen+0x1ef\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_vfslocks_getlock+0x41\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`copen+0xf2\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`bcopy+0x272\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`syscall_mstate+0x22\n              unix`sys_syscall+0x1a1\n                2\n\n              genunix`fd_reserve+0x33\n              genunix`ufalloc_file+0x103\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`post_syscall+0x13\n              unix`0xfffffffffb800c91\n                2\n\n              genunix`dnlc_lookup+0x154\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`fop_lookup+0x85\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`dnlc_lookup+0x56\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`cv_broadcast+0x76\n              genunix`setf+0x8c\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`syscall_mstate+0x26\n              unix`sys_syscall+0x10e\n                2\n\n              lofs`lsave+0x57\n              lofs`makelonode+0x1df\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              lofs`freelonode+0x37\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`post_syscall+0x17\n              unix`0xfffffffffb800c91\n                2\n\n              genunix`vn_vfslocks_rele+0x8\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_cache_free+0xe8\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`copen+0x4fa\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`cv_broadcast+0x7a\n              genunix`setf+0x8c\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_cache_free+0xed\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_cache_free+0xed\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`copen\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`0xfffffffffb800c81\n                2\n\n              genunix`cv_destroy+0x1\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_cache_free+0xf1\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_cache_free+0xf1\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`lookuppnatcred+0x62\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`syscall_mstate+0x33\n              unix`0xfffffffffb800ca0\n                2\n\n              genunix`copen+0x204\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`fop_lookup+0x97\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`cv_destroy+0x8\n              genunix`rwst_destroy+0x2e\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`lookuppnatcred+0x168\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`do_splx+0x8\n              genunix`disp_lock_exit+0x47\n              genunix`post_syscall+0x318\n              unix`0xfffffffffb800c91\n                2\n\n              genunix`vn_vfslocks_getlock+0x59\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`set_errno+0x2e\n              genunix`copen+0x4fa\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`dnlc_lookup+0x6e\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`setf+0x7f\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_zalloc+0x10\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`fd_find+0x1\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`dnlc_lookup+0x75\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`dnlc_lookup+0x175\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`syscall_mstate+0x45\n              unix`0xfffffffffb800c86\n                2\n\n              zfs`zfs_lookup+0x37\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`memcmp+0x8\n              unix`bcmp+0x9\n              genunix`dnlc_lookup+0x10d\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_cache_free+0x8\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`copen+0x19\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`dnlc_lookup+0x79\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`bcopy+0x399\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_vfslocks_rele+0x29\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`memcmp+0xb\n              unix`bcmp+0x9\n              genunix`dnlc_lookup+0x10d\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`do_splx+0x1b\n              genunix`disp_lock_exit+0x47\n              genunix`post_syscall+0x318\n              unix`0xfffffffffb800c91\n                2\n\n              genunix`dnlc_lookup+0x17f\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              zfs`zfs_lookup+0x3f\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`secpolicy_vnode_access2+0xf\n              ufs`ufs_iaccess+0x128\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              lofs`lo_inactive+0x14\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`rwst_exit+0x54\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_cache_alloc+0xe4\n              genunix`falloc+0x63\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`syscall_mstate+0x55\n              unix`0xfffffffffb800c86\n                2\n\n              unix`strlen+0x16\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`fd_find+0x17\n              genunix`ufalloc_file+0x91\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`crfree+0x18\n              genunix`unfalloc+0x4a\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_recycle+0x2b\n              genunix`vn_reinit+0x7b\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              zfs`zfs_lookup+0x4b\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`fop_lookup+0xbb\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_cache_free+0x1b\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`setf+0x9c\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`copystr+0x1d\n              genunix`pn_get_buf+0x43\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`rwst_exit+0x5d\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              ufs`ufs_lookup+0xed\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`post_syscall+0x14d\n              unix`0xfffffffffb800c91\n                2\n\n              genunix`dnlc_lookup+0x8f\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`post_syscall+0x4f\n              unix`0xfffffffffb800c91\n                2\n\n              genunix`unfalloc+0x10\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`secpolicy_vnode_access2+0x22\n              ufs`ufs_iaccess+0x128\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`traverse+0x23\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`syscall_mstate+0x163\n              unix`sys_syscall+0x1a1\n                2\n\n              genunix`syscall_mstate+0x167\n              unix`0xfffffffffb800c86\n                2\n\n              genunix`traverse+0x28\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`ufalloc_file+0xf8\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`unfalloc+0x18\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`setf+0xa9\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`lookuppnvp+0xaa\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`secpolicy_vnode_access2+0x22a\n              ufs`ufs_iaccess+0x128\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              lofs`lo_lookup+0x1db\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`copystr+0x2b\n              genunix`pn_get_buf+0x43\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_cache_free+0x2b\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_cache_alloc+0xfc\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`lookupnameatcred+0x2d\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_cache_alloc+0x100\n              genunix`vn_alloc+0x1a\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_cache_alloc+0x1\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`post_syscall+0x64\n              unix`0xfffffffffb800c91\n                2\n\n              genunix`memcmp+0x35\n              unix`bcmp+0x9\n              genunix`dnlc_lookup+0x10d\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`fop_inactive+0x35\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`copen+0x46\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              ufs`ufs_lookup+0x106\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`copystr+0x37\n              genunix`pn_get_buf+0x43\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_openat+0xf7\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_zalloc+0x47\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`dnlc_lookup+0x1a8\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`memcmp+0x38\n              genunix`dnlc_lookup+0x10d\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              lofs`freelonode+0x189\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_cache_free+0x3a\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_vfslocks_rele+0x5c\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`falloc+0xcc\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`syscall_mstate+0x17c\n              unix`sys_syscall+0x1a1\n                2\n\n              genunix`fd_find+0x40\n              genunix`ufalloc_file+0x91\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`fop_lookup+0xe0\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`mutex_enter\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`mutex_enter\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`mutex_enter\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`mutex_enter\n              genunix`kmem_free+0x4e\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`mutex_enter\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`mutex_enter\n              genunix`lookuppnvp+0x39f\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`lookuppnvp+0xc1\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`post_syscall+0x173\n              unix`0xfffffffffb800c91\n                2\n\n              genunix`fop_lookup+0xe4\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_openat+0x106\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`lookuppnvp+0x3c7\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_cache_alloc+0x17\n              genunix`falloc+0x63\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              lofs`freelonode+0x98\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              ufs`ufs_lookup+0x118\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`mutex_enter+0x9\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`mutex_enter+0x9\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`mutex_enter+0x9\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`lookupnameatcred+0x4b\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_cache_alloc+0x1b\n              genunix`kmem_zalloc+0x47\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`dnlc_lookup+0xbe\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              ufs`ufs_lookup+0x11e\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`fd_find+0x4f\n              genunix`ufalloc_file+0x91\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`lookuppnvp+0x3cf\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_cache_alloc+0x22\n              genunix`kmem_zalloc+0x47\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`fd_find+0x53\n              genunix`ufalloc_file+0x91\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`rwst_enter_common+0x165\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_openat+0x16\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`lookupnameatcred+0x56\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_alloc+0x27\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_rele+0x8\n              ufs`ufs_lookup+0x36d\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`audit_getstate+0x18\n              genunix`lookuppnvp+0x82\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_cache_alloc+0x2a\n              genunix`vn_alloc+0x1a\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`copen+0x16c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_rele+0xc\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_openat+0x1c\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`fop_lookup+0xfc\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`falloc+0xed\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              zfs`zfs_fastaccesschk_execute+0x11f\n              zfs`zfs_lookup+0xc2\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`fop_inactive+0x60\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_cpu_reload+0x10\n              genunix`kmem_cache_free+0xce\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`mutex_exit\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`mutex_exit\n              zfs`zfs_lookup+0xc2\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`mutex_exit\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`mutex_exit\n              genunix`lookuppnvp+0x39f\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              lofs`lo_lookup+0x13\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_openat+0x24\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_rele+0x17\n              ufs`ufs_lookup+0x36d\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_rele+0x17\n              genunix`lookuppnvp+0x39f\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_cache_alloc+0x37\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`mutex_destroy+0x17\n              genunix`rwst_destroy+0x1c\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`audit_getstate+0x28\n              genunix`setf+0x3f\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_cpu_reload+0x18\n              genunix`kmem_cache_alloc+0x118\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`ufalloc_file+0x3a\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              unix`tsc_gethrtimeunscaled+0x1b\n              genunix`gethrtime_unscaled+0xa\n              genunix`syscall_mstate+0x5d\n              unix`0xfffffffffb800ca0\n                2\n\n              unix`mutex_exit+0xc\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`copen+0x17d\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`vn_openat+0x2e\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`kmem_cache_alloc+0x3e\n              genunix`kmem_zalloc+0x47\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              zfs`zfs_lookup+0x9f\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                2\n\n              genunix`cv_broadcast\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`audit_getstate+0x30\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`audit_getstate+0x30\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`kmem_cache_free+0x70\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`kmem_free\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`lookuppnatcred+0xe1\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`lookupnameatcred+0x72\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`mutex_exit+0x12\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`mutex_exit+0x12\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`mutex_exit+0x12\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_rele+0x24\n              ufs`ufs_lookup+0x36d\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_rele+0x24\n              lofs`freelonode+0x1fe\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              lofs`freelonode+0x1c5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              lofs`lo_lookup+0x25\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`openat+0x16\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_openat+0x36\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              lofs`freelonode+0xc7\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`ufalloc_file+0x48\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`fop_lookup+0x118\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`mutex_exit+0x19\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              lofs`lo_lookup+0x12a\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`copen+0x18b\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`copyinstr+0xc\n              genunix`pn_get_buf+0x43\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`cv_broadcast+0xc\n              genunix`setf+0x8c\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`lookuppnvp+0xfd\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`kmem_cache_alloc+0x4e\n              genunix`falloc+0x63\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              lofs`freelonode+0x1cf\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`copen+0x90\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`pn_get_buf+0x10\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`fop_lookup+0x120\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`setf+0x103\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`tsc_gethrtimeunscaled+0x34\n              genunix`syscall_mstate+0x5d\n              unix`0xfffffffffb800c86\n                3\n\n              genunix`fd_find+0x85\n              genunix`ufalloc_file+0x91\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vsd_free+0x26\n              genunix`vn_recycle+0xb5\n              genunix`vn_reinit+0x7b\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`pn_get_buf+0x17\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`kmem_free+0x17\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_free+0x8\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`lookupnameatcred+0x88\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`syscall_mstate+0x1c8\n              unix`0xfffffffffb800c86\n                3\n\n              unix`sys_syscall+0x10e\n                3\n\n              genunix`falloc+0x19\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`kmem_free+0x1b\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`fop_lookup+0x12d\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`post_syscall+0x2bf\n              unix`0xfffffffffb800c91\n                3\n\n              lofs`lo_root+0x10\n              genunix`fsop_root+0x2d\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`dnlc_lookup+0x1\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`fd_find+0x91\n              genunix`ufalloc_file+0x91\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`lookuppnvp+0x111\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`falloc+0x24\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_openat+0x55\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`thread_lock+0x36\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n                3\n\n              genunix`vn_free+0x17\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`fd_find+0x98\n              genunix`ufalloc_file+0x91\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`falloc+0x28\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`fop_lookup+0x139\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`pn_get_buf+0x2a\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`kmem_cache_alloc+0x6a\n              genunix`vn_alloc+0x1a\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`kmem_free+0x2a\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`kmem_free+0x2a\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`lookuppnatcred+0xb\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`clear_stale_fd+0xd\n              genunix`post_syscall+0x1fe\n              unix`0xfffffffffb800c91\n                3\n\n              genunix`fop_lookup+0x13d\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`falloc+0x2f\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`lookuppnatcred+0x110\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`ufalloc+0x1\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              lofs`table_lock_enter+0x22\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`lookuppnatcred+0x13\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`lookuppnvp+0x124\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`pn_get_buf+0x35\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`rw_enter+0x1c\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`copen+0x2be\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_vfslocks_rele+0xce\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              zfs`zfs_fastaccesschk_execute+0x6e\n              zfs`zfs_lookup+0xc2\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`fd_reserve\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`kmem_cache_free+0xb0\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`thread_lock+0x53\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n                3\n\n              genunix`pn_get_buf+0x43\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_vfslocks_getlock+0x13\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`setf+0x33\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`kmem_free+0x43\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`kmem_cache_alloc+0x84\n              genunix`kmem_zalloc+0x47\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`dnlc_lookup+0x26\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`syscall_mstate+0x1f7\n              unix`0xfffffffffb800ca0\n                3\n\n              lofs`freelonode+0x8\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`syscall_mstate+0xf8\n              unix`sys_syscall+0x10e\n                3\n\n              genunix`kmem_cache_alloc+0x89\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`copen+0x2ca\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_exists+0xc\n              lofs`makelonode+0x1e7\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`lookuppnvp+0x43c\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`kmem_cache_free+0xbd\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`copen+0x2ce\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`kmem_free+0x4e\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_openat+0x47f\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_vfslocks_getlock+0x1f\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_vfslocks_getlock+0x1f\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`copen+0x1d0\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`rwst_exit\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`ufalloc_file+0x91\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`disp_lock_exit+0x42\n              genunix`post_syscall+0x318\n              unix`0xfffffffffb800c91\n                3\n\n              genunix`kmem_cache_alloc+0x92\n              genunix`falloc+0x63\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`copen+0x1d3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`syscall_mstate+0x203\n              unix`sys_syscall+0x1a1\n                3\n\n              genunix`lookuppnatcred+0x34\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`lookuppnvp+0x444\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`audit_falloc+0x15\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              lofs`freelonode+0x17\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`syscall_mstate+0x8\n              unix`0xfffffffffb800c86\n                3\n\n              genunix`syscall_mstate+0x108\n              unix`sys_syscall+0x10e\n                3\n\n              genunix`rwst_exit+0x8\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`sys_syscall+0x14e\n                3\n\n              genunix`fop_inactive+0xcb\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`fop_inactive+0xcb\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_vfslocks_getlock+0x2d\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_openat+0x8e\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              lofs`freelonode+0x1f\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`splr+0x1f\n              genunix`thread_lock+0x24\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n                3\n\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              lofs`table_lock_enter+0x50\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`copen+0x4e0\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`syscall_mstate+0x10\n              unix`0xfffffffffb800c86\n                3\n\n              genunix`crgetuid\n              zfs`zfs_lookup+0xc2\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`sys_syscall+0x156\n                3\n\n              genunix`rwst_enter_common+0x1e2\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`falloc+0x63\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`lookuppnatcred+0x147\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`syscall_mstate+0x17\n              unix`0xfffffffffb800c86\n                3\n\n              genunix`dnlc_lookup+0x149\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`syscall_mstate+0x119\n              unix`0xfffffffffb800ca0\n                3\n\n              genunix`syscall_mstate+0x1b\n              unix`0xfffffffffb800ca0\n                3\n\n              genunix`post_syscall+0x30c\n              unix`0xfffffffffb800c91\n                3\n\n              unix`sys_syscall+0x162\n                3\n\n              genunix`falloc+0x6f\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`crgetuid+0x10\n              zfs`zfs_lookup+0xc2\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`lock_try\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n                3\n\n              genunix`lookuppnatcred+0x151\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`cv_broadcast+0x72\n              genunix`setf+0x8c\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              zfs`zfs_lookup+0x12\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`syscall_mstate+0x123\n              unix`sys_syscall+0x10e\n                3\n\n              zfs`zfs_lookup+0x16\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`pn_fixslash+0x28\n              genunix`lookuppnvp+0x105\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`kmem_cache_free+0xe8\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`lookuppnvp+0x36b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              lofs`table_lock_enter+0x6d\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`set_errno+0x1e\n              genunix`copen+0x4fa\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`cv_broadcast+0x7f\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`cv_broadcast+0x7f\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`cv_broadcast+0x7f\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`atomic_add_32_nv\n              genunix`unfalloc+0x4a\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`pn_fixslash+0x32\n              genunix`lookuppnvp+0x105\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`syscall_mstate+0x33\n              unix`sys_syscall+0x1a1\n                3\n\n              genunix`syscall_mstate+0x135\n              unix`0xfffffffffb800c86\n                3\n\n              genunix`syscall_mstate+0x135\n              unix`0xfffffffffb800ca0\n                3\n\n              genunix`rwst_exit+0x35\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`kmem_zalloc+0x5\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`0xfffffffffb800c86\n                3\n\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`copen+0x207\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_vfslocks_rele+0x17\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`fop_lookup+0x97\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_openat+0x2b8\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_free+0x78\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`dnlc_lookup+0x16c\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`fop_lookup+0x9c\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`do_splx+0xc\n              genunix`disp_lock_exit+0x47\n              genunix`post_syscall+0x318\n              unix`0xfffffffffb800c91\n                3\n\n              genunix`post_syscall+0x32d\n              unix`0xfffffffffb800c91\n                3\n\n              genunix`syscall_mstate+0x13d\n              unix`sys_syscall+0x10e\n                3\n\n              genunix`memcmp\n              genunix`dnlc_lookup+0x10d\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              zfs`zfs_lookup+0x30\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`kmem_cache_free\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`kmem_cache_free\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`kmem_cache_free\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`bcopy+0x391\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`syscall_mstate+0x41\n              unix`0xfffffffffb800c86\n                3\n\n              genunix`lookuppnatcred+0x72\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`set_errno+0x35\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`syscall_mstate+0x45\n              unix`sys_syscall+0x1a1\n                3\n\n              genunix`vn_vfslocks_getlock+0x66\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`lookuppnatcred+0x77\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`do_splx+0x17\n              genunix`disp_lock_exit+0x47\n              genunix`post_syscall+0x318\n              unix`0xfffffffffb800c91\n                3\n\n              genunix`audit_unfalloc+0x17\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_openat+0xc8\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`fop_inactive+0x8\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_vfslocks_rele+0x29\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`crfree+0x9\n              genunix`unfalloc+0x4a\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`rwst_init+0x5a\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`fop_inactive+0xc\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`copen+0x1d\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`fd_find+0xf\n              genunix`ufalloc_file+0x91\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`0xfffffffffb800ca0\n                3\n\n              genunix`rwst_destroy\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`kmem_cache_free+0x10\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`syscall_mstate+0x157\n              unix`0xfffffffffb800c86\n                3\n\n              genunix`kmem_cache_free+0x17\n              genunix`unfalloc+0x61\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`kmem_cache_free+0x17\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`secpolicy_vnode_access2+0x17\n              ufs`ufs_iaccess+0x128\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_vfslocks_rele+0x38\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`traverse+0x18\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`unfalloc+0x8\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`lookuppnvp+0x39a\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`dnlc_lookup+0x8b\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`kmem_cache_free+0x1b\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_vfslocks_getlock+0x7d\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`secpolicy_vnode_access2+0x21e\n              ufs`ufs_iaccess+0x128\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`syscall_mstate+0x15f\n              unix`0xfffffffffb800c86\n                3\n\n              unix`bzero\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`dnlc_lookup+0x92\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`fop_inactive+0x22\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`copystr+0x24\n              genunix`pn_get_buf+0x43\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`fd_find+0x24\n              genunix`ufalloc_file+0x91\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`rwst_enter_common+0x35\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`fop_lookup+0xc7\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`syscall_mstate+0x167\n              unix`0xfffffffffb800ca0\n                3\n\n              genunix`rwst_destroy+0x17\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`dnlc_lookup+0x99\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`syscall_mstate+0x69\n              unix`0xfffffffffb800c86\n                3\n\n              genunix`syscall_mstate+0x69\n              unix`sys_syscall+0x1a1\n                3\n\n              genunix`kmem_cache_free+0x2b\n              genunix`kmem_free+0x4e\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`post_syscall+0x35c\n                3\n\n              genunix`copen+0x3d\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`dnlc_lookup+0x9d\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`kmem_cache_free+0x2f\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              ufs`ufs_lookup+0x1\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`fop_lookup+0xd2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`ufalloc_file+0x103\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`lookuppnvp+0x3b5\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`crgetmapped+0x15\n              genunix`fop_inactive+0x60\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`bzero+0x16\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`kmem_cache_free+0x37\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vsd_free+0xd8\n              genunix`vn_free+0x8b\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`kmem_cache_alloc+0x8\n              genunix`kmem_zalloc+0x47\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`post_syscall+0x6b\n              unix`0xfffffffffb800c91\n                3\n\n              genunix`vn_vfsrlock+0x3c\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`fd_find+0x3c\n              genunix`ufalloc_file+0x91\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`lookuppnatcred+0xad\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`setf+0xbd\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`bcopy+0x3d0\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`mutex_enter\n              genunix`fsop_root+0x2d\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`mutex_enter\n              lofs`freelonode+0x1fe\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`mutex_enter\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`syscall_mstate+0x84\n              unix`0xfffffffffb800ca0\n                3\n\n              genunix`post_syscall+0x75\n              unix`0xfffffffffb800c91\n                3\n\n              genunix`ufalloc_file+0x17\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`fop_lookup+0x1e7\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`bcopy+0x3d8\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`fd_find+0x48\n              genunix`ufalloc_file+0x91\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_openat+0x9\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_vfslocks_rele+0x6b\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`ufalloc_file+0x1b\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_setpath+0x11c\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              lofs`makelonode+0x8d\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`lookuppnatcred+0xbe\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              zfs`zfs_lookup+0x7f\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`bcopy+0x3e0\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`lookuppnvp+0x3d0\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`mutex_destroy\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`lookupnameatcred+0x52\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`syscall_mstate+0x193\n              unix`sys_syscall+0x1a1\n                3\n\n              genunix`vn_openat+0x115\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`falloc+0xe5\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`copen+0x166\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`ufalloc_file+0x126\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`kmem_cache_alloc+0x26\n              genunix`kmem_zalloc+0x47\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_rele+0x8\n              lofs`freelonode+0x1fe\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`tsc_gethrtimeunscaled+0x8\n              genunix`gethrtime_unscaled+0xa\n              genunix`syscall_mstate+0x5d\n              unix`0xfffffffffb800c86\n                3\n\n              genunix`audit_getstate+0x18\n              genunix`post_syscall+0xbe\n              unix`0xfffffffffb800c91\n                3\n\n              genunix`audit_getstate+0x18\n              genunix`setf+0x3f\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_openat+0x11b\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`traverse+0x5b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_vfslocks_getlock+0xbc\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`tsc_gethrtimeunscaled+0xc\n              genunix`gethrtime_unscaled+0xa\n              genunix`syscall_mstate+0x5d\n              unix`0xfffffffffb800ca0\n                3\n\n              genunix`syscall_mstate+0x19d\n              unix`sys_syscall+0x1a1\n                3\n\n              unix`mutex_exit\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`mutex_exit\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`syscall_mstate+0x1a1\n              unix`0xfffffffffb800ca0\n                3\n\n              genunix`syscall_mstate+0xa2\n              unix`sys_syscall+0x1a1\n                3\n\n              genunix`vn_rele+0x17\n              lofs`freelonode+0x1fe\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_rele+0x17\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`kmem_cache_alloc+0x37\n              genunix`vn_alloc+0x1a\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`openat+0x8\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_vfsunlock+0x8\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`kmem_cache_free+0x68\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`mutex_exit+0x9\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`mutex_exit+0x9\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`kmem_cache_alloc+0x3a\n              genunix`falloc+0x63\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`tsc_gethrtimeunscaled+0x1b\n              genunix`gethrtime_unscaled+0xa\n              genunix`syscall_mstate+0x5d\n              unix`0xfffffffffb800c86\n                3\n\n              genunix`vn_vfsunlock+0xc\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`falloc+0xfc\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              unix`mutex_exit+0xc\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`fop_inactive+0x6d\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`vn_rele+0x1f\n              ufs`ufs_lookup+0x36d\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                3\n\n              genunix`post_syscall+0x19f\n              unix`0xfffffffffb800c91\n                3\n\n              genunix`pn_get_buf\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`cv_broadcast\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_cache_free+0x70\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              lofs`freelonode+0x1c1\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`unfalloc+0x61\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`fop_lookup+0x12\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`mutex_exit+0x12\n              genunix`unfalloc+0x61\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`mutex_exit+0x12\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`mutex_exit+0x12\n              ufs`ufs_lookup+0x36d\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`mutex_exit+0x12\n              genunix`traverse+0x9f\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`mutex_exit+0x12\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`mutex_exit+0x12\n              genunix`kmem_zalloc+0x47\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`mutex_exit+0x12\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_free+0x5\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`pn_get_buf+0x6\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`bcopy+0x308\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`copyinstr+0x8\n              genunix`pn_get_buf+0x43\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`mutex_exit+0x19\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`fop_lookup+0x1a\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`tsc_read+0xa\n              genunix`gethrtime_unscaled+0xa\n              genunix`syscall_mstate+0x5d\n              unix`0xfffffffffb800c86\n                4\n\n              genunix`fsop_root+0x1b\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`crfree+0x7b\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vn_vfslocks_rele+0x9e\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`ufalloc_file+0x50\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`syscall_mstate+0x1c0\n              unix`0xfffffffffb800c86\n                4\n\n              zfs`zfs_fastaccesschk_execute+0x140\n              zfs`zfs_lookup+0xc2\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vn_rele+0x31\n              lofs`freelonode+0x1fe\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vn_rele+0x31\n              genunix`lookuppnvp+0x39f\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`sys_syscall+0x109\n                4\n\n              genunix`lookuppnvp+0x105\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vn_vfslocks_rele+0xa6\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vn_vfslocks_rele+0xa6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`fop_inactive+0x86\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`fop_inactive+0x86\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`lookupnameatcred+0x87\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_free+0x17\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`syscall_mstate+0x1c8\n              unix`sys_syscall+0x10e\n                4\n\n              genunix`vn_rele+0x39\n              ufs`ufs_lookup+0x36d\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vn_rele+0x39\n              lofs`freelonode+0x1fe\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`syscall_mstate+0xc9\n              unix`0xfffffffffb800c86\n                4\n\n              genunix`post_syscall+0xb9\n              unix`0xfffffffffb800c91\n                4\n\n              genunix`fsop_root+0x2a\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_free+0x1b\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_free+0x1b\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              zfs`zfs_lookup+0xbd\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`post_syscall+0xbe\n              unix`0xfffffffffb800c91\n                4\n\n              genunix`clear_stale_fd+0x1\n              unix`0xfffffffffb800c91\n                4\n\n              genunix`dnlc_lookup+0x104\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`open+0x6\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`pn_get_buf+0x26\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`setf+0x116\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_cache_alloc+0x66\n              genunix`falloc+0x63\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              lofs`lo_root+0x17\n              genunix`fsop_root+0x2d\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`lookuppnatcred+0x109\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              zfs`specvp_check+0x3a\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_free+0x2a\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              ufs`ufs_lookup+0x36d\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`traverse+0x9f\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`fop_inactive+0x9f\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`post_syscall+0x2d0\n              unix`0xfffffffffb800c91\n                4\n\n              genunix`pn_get_buf+0x31\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`setf+0x22\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`fop_inactive+0xa3\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              zfs`zfs_lookup+0xd4\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vn_vfslocks_rele+0xc6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`setf+0x26\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`dnlc_lookup+0x118\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_cache_alloc+0x79\n              genunix`falloc+0x63\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_cache_alloc+0x79\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`copen+0x1bd\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vn_vfslocks_rele+0xce\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`lookuppnatcred+0x1e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vn_free+0x2f\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`syscall_mstate+0x1ef\n              unix`0xfffffffffb800ca0\n                4\n\n              genunix`fd_reserve\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_cache_free+0xb0\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_free+0x43\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              lofs`lo_lookup+0x64\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              lofs`lo_lookup+0x67\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vn_vfslocks_getlock+0x17\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_cache_alloc+0x89\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`fd_reserve+0xb\n              genunix`setf+0x123\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`fop_inactive+0xbb\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_cache_free+0xbd\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`dnlc_lookup+0x2e\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`copen+0x2cf\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`post_syscall+0x1f0\n              unix`0xfffffffffb800c91\n                4\n\n              ufs`ufs_lookup+0x93\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`lwp_getdatamodel+0x8\n              genunix`post_syscall+0x2f5\n              unix`0xfffffffffb800c91\n                4\n\n              genunix`vn_vfslocks_getlock+0x29\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`splr+0x1b\n              genunix`thread_lock+0x24\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n                4\n\n              genunix`pn_fixslash+0xc\n              genunix`lookuppnvp+0x105\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`clear_stale_fd+0x3c\n              genunix`post_syscall+0x1fe\n              unix`0xfffffffffb800c91\n                4\n\n              genunix`vn_rele+0x7d\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vn_openat+0x48e\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`set_errno\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              ufs`ufs_iaccess+0x110\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vn_setpath+0xa0\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`gethrtime_unscaled\n              unix`0xfffffffffb800c86\n                4\n\n              genunix`cv_init+0x11\n              genunix`rwst_init+0x56\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`lookuppnvp+0x51\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`rwst_enter_common+0x1e4\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`cv_init+0x15\n              genunix`rwst_init+0x56\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              lofs`freelonode+0x27\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vn_openat+0x497\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`fop_lookup+0x77\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`syscall_mstate+0x17\n              unix`sys_syscall+0x1a1\n                4\n\n              genunix`copen+0xe8\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`rwst_exit+0x18\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vn_openat+0x9a\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_cache_free+0xdb\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_cache_free+0xdb\n              genunix`kmem_free+0x4e\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`post_syscall+0x20c\n              unix`0xfffffffffb800c91\n                4\n\n              genunix`cv_init+0x1d\n              genunix`rwst_init+0x56\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`bcmp\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`syscall_mstate+0x22\n              unix`0xfffffffffb800ca0\n                4\n\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`prunstop+0x14\n              genunix`post_syscall+0x2d0\n              unix`0xfffffffffb800c91\n                4\n\n              genunix`vn_vfslocks_rele+0x105\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vn_openat+0xa7\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`fd_reserve+0x37\n              genunix`ufalloc_file+0x103\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              lofs`lo_root+0x68\n              genunix`fsop_root+0x2d\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vn_vfslocks_rele+0x8\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_cache_free+0xe8\n              genunix`kmem_free+0x4e\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              zfs`zfs_lookup+0x1a\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`syscall_mstate+0x2a\n              unix`sys_syscall+0x10e\n                4\n\n              lofs`lo_root+0x70\n              genunix`fsop_root+0x2d\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_zalloc\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`membar_consumer\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`membar_consumer\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_cache_free+0xf1\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_cache_free+0xf1\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_cache_free+0xf1\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`fop_lookup+0x93\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`syscall_mstate+0x135\n              unix`sys_syscall+0x1a1\n                4\n\n              genunix`lookuppnvp+0x76\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`set_errno+0x27\n              genunix`copen+0x4fa\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vn_vfslocks_rele+0x17\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`fd_reserve+0x48\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`syscall_mstate+0x139\n              unix`0xfffffffffb800c86\n                4\n\n              genunix`kmem_cache_free+0xfa\n              genunix`unfalloc+0x61\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_cache_free+0xfa\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_cache_free+0xfa\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`sys_syscall+0x180\n                4\n\n              genunix`copen+0xb\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vn_openat+0xbc\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              lofs`table_lock_enter+0x7d\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`syscall_mstate+0x13d\n              unix`0xfffffffffb800ca0\n                4\n\n              genunix`lookuppnvp+0x37f\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`lookupnameatcred\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`fop_inactive\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`audit_unfalloc+0x10\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_cache_free\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_cache_free\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              lofs`lo_inactive+0x1\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`copen+0x13\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`rwst_exit+0x44\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`ufalloc_file+0xd7\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`fd_find+0x8\n              genunix`ufalloc_file+0x91\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_cache_free+0x8\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_zalloc+0x1a\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`rwst_exit+0x4c\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`do_splx+0x1f\n              genunix`disp_lock_exit+0x47\n              genunix`post_syscall+0x318\n              unix`0xfffffffffb800c91\n                4\n\n              genunix`kmem_cache_free+0x10\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`strlen+0x10\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`strlen+0x13\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`copen+0x24\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vn_vfsrlock+0x14\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`setf+0x94\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`rwst_exit+0x54\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_cache_alloc+0xe4\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`fop_lookup+0xb6\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`post_syscall+0x347\n              unix`0xfffffffffb800c91\n                4\n\n              genunix`syscall_mstate+0x157\n              unix`sys_syscall+0x10e\n                4\n\n              genunix`kmem_cache_free+0x17\n              genunix`kmem_free+0x4e\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`copen+0x28\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vn_vfslocks_rele+0x38\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`syscall_mstate+0x58\n              unix`sys_syscall+0x1a1\n                4\n\n              genunix`rwst_destroy+0x8\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vn_openat+0x2d9\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_zalloc+0x29\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`fop_inactive+0x1b\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`sys_syscall+0x1a1\n                4\n\n              genunix`dnlc_lookup+0x18e\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`audit_unfalloc+0x2e\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`copen+0x2f\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`setf+0xa0\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`crgetmapped\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_cache_free+0x22\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_cache_free+0x22\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`post_syscall+0x353\n              unix`0xfffffffffb800c91\n                4\n\n              genunix`falloc+0xb3\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`setf+0xa4\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vn_vfslocks_getlock+0x86\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vn_vfslocks_getlock+0x86\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`syscall_mstate+0x67\n              unix`sys_syscall+0x1a1\n                4\n\n              genunix`syscall_mstate+0x167\n              unix`sys_syscall+0x10e\n                4\n\n              genunix`setf+0xa8\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vn_invalid+0x39\n              lofs`freelonode+0x115\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`syscall_mstate+0x69\n              unix`0xfffffffffb800ca0\n                4\n\n              unix`splr+0x79\n              genunix`thread_lock+0x24\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n                4\n\n              genunix`lookuppnatcred+0x9b\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`rwst_destroy+0x1c\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_cache_alloc+0xfc\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`fop_inactive+0x2d\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`splr+0x7e\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n                4\n\n              genunix`syscall_mstate+0x170\n              unix`0xfffffffffb800ca0\n                4\n\n              genunix`rwst_destroy+0x20\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`syscall_mstate+0x71\n              unix`0xfffffffffb800ca0\n                4\n\n              unix`clear_int_flag+0x1\n              genunix`thread_lock+0x24\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n                4\n\n              genunix`lookuppnvp+0xb4\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`fop_lookup+0xd4\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`rwst_destroy+0x25\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`fop_inactive+0x35\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`memcmp+0x37\n              unix`bcmp+0x9\n              genunix`dnlc_lookup+0x10d\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              lofs`freelonode+0x88\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`ufalloc_file+0x8\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vsd_free+0xd8\n              genunix`vn_free+0x8b\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`copystr+0x3c\n              genunix`pn_get_buf+0x43\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_cache_free+0x3f\n              genunix`kmem_free+0x4e\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`ufalloc_file+0x10\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`unfalloc+0x30\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`audit_getstate\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_cache_alloc+0x10\n              genunix`kmem_zalloc+0x47\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`mutex_enter\n              ufs`ufs_lookup+0x36d\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`mutex_enter\n              genunix`traverse+0x9f\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`mutex_enter\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              zfs`zfs_fastaccesschk_execute\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`rwst_destroy+0x32\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`traverse+0x43\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`syscall_mstate+0x84\n              unix`0xfffffffffb800c86\n                4\n\n              genunix`rwst_exit+0x86\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`ufalloc_file+0x117\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`copen+0x59\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`mutex_enter+0x9\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`bcopy+0x2db\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`fd_find+0x4c\n              genunix`ufalloc_file+0x91\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              lofs`freelonode+0x9d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`fop_inactive+0x4e\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              ufs`ufs_lookup+0x1e\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`rwst_exit+0x8f\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              zfs`zfs_fastaccesschk_execute+0x10f\n              zfs`zfs_lookup+0xc2\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              lofs`freelonode+0xa0\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`copen+0x160\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_cpu_reload\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`i_ddi_splhigh\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n                4\n\n              lofs`makelonode+0x91\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              lofs`lo_lookup+0x1\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              lofs`lsave+0xc4\n              lofs`makelonode+0x1df\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`lookuppnatcred+0xc5\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`bcopy+0x3e8\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vn_rele+0x8\n              genunix`traverse+0x9f\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vn_rele+0x8\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vn_openat+0x18\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vfs_matchops+0x8\n              lofs`lo_lookup+0x1e6\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`copen+0x169\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`copystr+0x5a\n              genunix`pn_get_buf+0x43\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`ufalloc_file+0x2a\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`falloc+0xee\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`post_syscall+0x18f\n              unix`0xfffffffffb800c91\n                4\n\n              unix`mutex_exit\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`mutex_exit\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`mutex_exit\n              genunix`kmem_free+0x4e\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`mutex_exit\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`mutex_exit\n              genunix`kmem_zalloc+0x47\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`lookupnameatcred+0x61\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`unfalloc+0x52\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`lookuppnvp+0x1e4\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`fop_lookup+0x107\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              zfs`specvp_check+0x8\n              zfs`zfs_lookup+0xf4\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`audit_getstate+0x28\n              genunix`post_syscall+0xbe\n              unix`0xfffffffffb800c91\n                4\n\n              genunix`vsd_free+0x8\n              genunix`vn_free+0x8b\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`vsd_free+0x8\n              genunix`vn_free+0x8b\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_cache_free+0x68\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`kmem_cache_free+0x68\n              genunix`kmem_free+0x4e\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              lofs`lo_lookup+0x11b\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              unix`tsc_gethrtimeunscaled+0x1b\n              genunix`gethrtime_unscaled+0xa\n              genunix`syscall_mstate+0x5d\n              unix`sys_syscall+0x10e\n                4\n\n              genunix`fd_find+0x6f\n              genunix`ufalloc_file+0x91\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                4\n\n              genunix`fsop_root+0x10\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`audit_getstate+0x30\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              lofs`lo_lookup+0x122\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`syscall_mstate+0x1b2\n              unix`0xfffffffffb800ca0\n                5\n\n              unix`mutex_exit+0x12\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`mutex_exit+0x12\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`mutex_exit+0x12\n              lofs`freelonode+0x1fe\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`audit_getstate+0x33\n              unix`0xfffffffffb800c91\n                5\n\n              genunix`vn_rele+0x24\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`syscall_mstate+0xb4\n              unix`sys_syscall+0x1a1\n                5\n\n              genunix`fsop_root+0x17\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`traverse+0x77\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`tsc_read+0x7\n              genunix`gethrtime_unscaled+0xa\n              genunix`syscall_mstate+0x5d\n              unix`sys_syscall+0x1a1\n                5\n\n              unix`tsc_gethrtimeunscaled+0x28\n              genunix`gethrtime_unscaled+0xa\n              genunix`syscall_mstate+0x5d\n              unix`0xfffffffffb800c86\n                5\n\n              unix`mutex_exit+0x19\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`syscall_mstate+0x1bb\n              unix`sys_syscall+0x1a1\n                5\n\n              genunix`kmem_free+0xb\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`kmem_free+0xf\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`kmem_free+0xf\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`dnlc_lookup+0xf0\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_rele+0x31\n              ufs`ufs_lookup+0x36d\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`copyinstr+0x11\n              genunix`pn_get_buf+0x43\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`setf+0x1\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`mutex_init+0x41\n              genunix`rwst_init+0x38\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`fsop_root+0x22\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`fd_find+0x82\n              genunix`ufalloc_file+0x91\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_openat+0x47\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`bcopy+0x318\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`lookuppnvp+0xb\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`kmem_free+0x1b\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              lofs`lo_root+0xc\n              genunix`fsop_root+0x2d\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`lookupnameatcred+0x8c\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`fd_find+0x8d\n              genunix`ufalloc_file+0x91\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_rele+0x3e\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_rele+0x3e\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`lookupnameatcred+0x93\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`syscall_mstate+0x1d4\n              unix`0xfffffffffb800c86\n                5\n\n              genunix`kmem_free+0x26\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              lofs`table_lock_enter+0x17\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_openat+0x59\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`kmem_free+0x2a\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`dnlc_lookup+0x10d\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`pn_get_buf+0x2d\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_openat+0x60\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`falloc+0x33\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_openat+0x64\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`dnlc_lookup+0x15\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              lofs`lo_root+0x28\n              genunix`fsop_root+0x2d\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`open+0x18\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_vfslocks_getlock+0x8\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`kmem_cache_alloc+0x79\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_openat+0x6a\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`falloc+0x3a\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`thread_lock+0x4b\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n                5\n\n              genunix`dnlc_lookup+0x11c\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              lofs`freelonode+0x1fe\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`kmem_cache_free+0xb0\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`kmem_cache_free+0xb0\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_mountedvfs+0x1\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`dnlc_lookup+0x22\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_vfslocks_getlock+0x13\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`kmem_cache_alloc+0x84\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_vfslocks_getlock+0x17\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`lookuppnvp+0x39\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`dnlc_lookup+0x2a\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`setf+0x3a\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_vfslocks_getlock+0x1b\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`mutex_destroy+0x6b\n              genunix`rwst_destroy+0x1c\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`kmem_cache_alloc+0x8d\n              genunix`kmem_zalloc+0x47\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_vfslocks_getlock+0x1f\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`rwst_enter_common+0x2cf\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              lofs`freelonode+0x10\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`pn_fixslash+0x1\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`cv_init+0x8\n              genunix`rwst_init+0x56\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`syscall_mstate+0x8\n              unix`sys_syscall+0x10e\n                5\n\n              genunix`syscall_mstate+0x108\n              unix`sys_syscall+0x1a1\n                5\n\n              genunix`vn_vfslocks_getlock+0x29\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              ufs`ufs_iaccess+0xa\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`syscall_mstate+0xc\n              unix`0xfffffffffb800c86\n                5\n\n              genunix`cv_init+0xd\n              genunix`rwst_init+0x56\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_vfslocks_getlock+0x2d\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`fop_lookup+0x6d\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`kmem_zalloc+0xdf\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`gethrtime_unscaled\n              unix`sys_syscall+0x1a1\n                5\n\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              lofs`freelonode+0x23\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`mutex_destroy+0x84\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`sys_syscall+0x15a\n                5\n\n              genunix`fd_reserve+0x26\n              genunix`setf+0x123\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              lofs`table_lock_enter+0x57\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`syscall_mstate+0x17\n              unix`0xfffffffffb800ca0\n                5\n\n              genunix`gethrtime_unscaled+0xa\n              genunix`syscall_mstate+0x5d\n              unix`0xfffffffffb800ca0\n                5\n\n              genunix`kmem_cache_free+0xdb\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`kmem_cache_free+0xdb\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`kmem_cache_free+0xdb\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              lofs`table_lock_enter+0x5c\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`pn_getcomponent+0xad\n              genunix`lookuppnvp+0x16d\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`lookuppnvp+0x35e\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`kmem_alloc+0xdf\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`crhold\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`cv_broadcast+0x72\n              genunix`rwst_exit+0x8f\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`syscall_mstate+0x22\n              unix`sys_syscall+0x10e\n                5\n\n              genunix`syscall_mstate+0x123\n              unix`0xfffffffffb800c86\n                5\n\n              genunix`rwst_exit+0x23\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`audit_falloc+0x33\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_vfslocks_rele+0x105\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`fop_lookup+0x85\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_free+0x66\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`syscall_mstate+0x26\n              unix`sys_syscall+0x1a1\n                5\n\n              genunix`copen+0xf8\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`kmem_cache_free+0xe8\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`kmem_cache_free+0xe8\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`dnlc_lookup+0x159\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`crhold+0x9\n              genunix`falloc+0xbc\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`fop_lookup+0x8e\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`lookuppnvp+0x6f\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              lofs`lo_lookup+0x1a0\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`lookuppnatcred+0x60\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`audit_unfalloc\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              lofs`freelonode+0x42\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`post_syscall+0x23\n              unix`0xfffffffffb800c91\n                5\n\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`crhold+0x16\n              genunix`falloc+0xbc\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`cv_destroy+0x8\n              genunix`rwst_destroy+0x25\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`ufalloc_file+0xc8\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`dnlc_lookup+0x69\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_vfslocks_getlock+0x59\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`syscall_mstate+0x3a\n              unix`0xfffffffffb800ca0\n                5\n\n              genunix`post_syscall+0x2e\n              unix`0xfffffffffb800c91\n                5\n\n              lofs`freelonode+0x4f\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`fd_find\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`crfree\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              lofs`table_lock_enter+0x82\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`lookuppnvp+0x82\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`syscall_mstate+0x45\n              unix`0xfffffffffb800ca0\n                5\n\n              unix`lock_clear_splx+0x5\n              genunix`post_syscall+0x318\n              unix`0xfffffffffb800c91\n                5\n\n              genunix`post_syscall+0x338\n              unix`0xfffffffffb800c91\n                5\n\n              genunix`lookuppnatcred+0x78\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`traverse+0x8\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`kmem_cache_free+0x8\n              genunix`kmem_free+0x4e\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_vfslocks_rele+0x29\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_vfslocks_rele+0x29\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`rwst_init+0x5b\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`fop_lookup+0xad\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`kmem_cache_alloc+0xe4\n              genunix`kmem_zalloc+0x47\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              lofs`lo_lookup+0x1c5\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`lookupnameatcred+0x17\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              zfs`zfs_lookup+0x47\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_vfslocks_rele+0x38\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`syscall_mstate+0x58\n              unix`0xfffffffffb800c86\n                5\n\n              unix`rw_exit+0x8\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`lookuppnatcred+0x89\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`rwst_enter_common+0x29\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`dnlc_lookup+0x8b\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`kmem_cache_free+0x1b\n              genunix`kmem_free+0x4e\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`syscall_mstate+0x5d\n              unix`0xfffffffffb800c86\n                5\n\n              genunix`crfree+0x1d\n              genunix`unfalloc+0x4a\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`lookupnameat+0x10\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`kmem_zalloc+0x31\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_openat+0xe2\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`kmem_cache_free+0x22\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`kmem_cache_free+0x22\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_vfslocks_rele+0x46\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_vfslocks_rele+0x46\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_vfslocks_rele+0x46\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`post_syscall+0x357\n              unix`0xfffffffffb800c91\n                5\n\n              genunix`rwst_destroy+0x17\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`dnlc_lookup+0x198\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`lookupnameat+0x18\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`syscall_mstate+0x168\n                5\n\n              genunix`crgetmapped+0x8\n              genunix`fop_inactive+0x60\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_invalid+0x39\n              lofs`freelonode+0x115\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`lookupnameatcred+0x29\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              zfs`zfs_lookup+0x59\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`post_syscall+0x35b\n              unix`0xfffffffffb800c91\n                5\n\n              genunix`kmem_cache_free+0x2b\n              genunix`unfalloc+0x61\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`kmem_cache_free+0x2b\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`unfalloc+0x1d\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`atomic_add_32\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`atomic_add_32\n              genunix`falloc+0xbc\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`kmem_cache_alloc\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`clear_int_flag\n              genunix`disp_lock_exit+0x47\n              genunix`post_syscall+0x318\n              unix`0xfffffffffb800c91\n                5\n\n              genunix`syscall_mstate+0x71\n              unix`sys_syscall+0x10e\n                5\n\n              genunix`syscall_mstate+0x71\n              unix`sys_syscall+0x1a1\n                5\n\n              genunix`fop_inactive+0x31\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`fop_lookup+0xd2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`rwst_destroy+0x25\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`bcopy+0x3c8\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              zfs`zfs_lookup+0x6a\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_vfsrlock+0x3c\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`fop_lookup+0xdd\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`rwst_destroy+0x2e\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`kmem_cache_free+0x3f\n              genunix`unfalloc+0x61\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`kmem_cache_free+0x3f\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`atomic_add_64\n              unix`sys_syscall+0x10e\n                5\n\n              unix`atomic_add_64\n              unix`0xfffffffffb800ca0\n                5\n\n              unix`atomic_add_64\n              unix`sys_syscall+0x1a1\n                5\n\n              genunix`vn_openat\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_setpath+0x10\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`mutex_enter\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`mutex_enter\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`mutex_enter\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`mutex_enter\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`mutex_enter\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`mutex_enter\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              lofs`makelonode+0x81\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_openat+0x1\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`bcopy+0x2d2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`rwst_destroy+0x33\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`copen+0x54\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`lookupnameat+0x34\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              ufs`ufs_iaccess+0x86\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`lookupnameatcred+0x47\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`fop_lookup+0x1e7\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              lofs`freelonode+0x98\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vsd_free+0xe8\n              genunix`vn_free+0x8b\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`falloc+0xd9\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`fop_lookup+0xe9\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`mutex_enter+0x9\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`lookupnameat+0x3a\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`fop_inactive+0x4a\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`crgetmapped+0x2a\n              genunix`fop_inactive+0x60\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_vfslocks_rele+0x6b\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`kmem_cache_alloc+0x1b\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`syscall_mstate+0x18c\n              unix`sys_syscall+0x1a1\n                5\n\n              genunix`audit_getstate+0xd\n              genunix`copen+0x59\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_rele\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`ufalloc_file+0x22\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              zfs`zfs_fastaccesschk_execute+0x16\n              zfs`zfs_lookup+0xc2\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              lofs`freelonode+0xa8\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_rele+0x8\n              genunix`lookuppnvp+0x39f\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`falloc+0xe9\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`unfalloc+0x4a\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`copystr+0x5d\n              genunix`pn_get_buf+0x43\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_setpath+0x2d\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`falloc+0xf0\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`mutex_exit\n              genunix`unfalloc+0x61\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`mutex_exit\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`mutex_exit\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`mutex_exit\n              ufs`ufs_lookup+0x36d\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`mutex_exit\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`mutex_exit\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`mutex_exit\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`post_syscall+0x291\n              unix`0xfffffffffb800c91\n                5\n\n              genunix`lookuppnatcred+0xd1\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`syscall_mstate+0xa2\n              unix`sys_syscall+0x10e\n                5\n\n              genunix`syscall_mstate+0xa2\n              unix`0xfffffffffb800c86\n                5\n\n              genunix`lookuppnvp+0xe3\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`vn_rele+0x17\n              genunix`traverse+0x9f\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              zfs`zfs_lookup+0x97\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`mutex_destroy+0x17\n              genunix`rwst_destroy+0x1c\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`setf+0xe8\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`fop_lookup+0x208\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`audit_getstate+0x28\n              genunix`lookuppnvp+0x82\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`audit_getstate+0x28\n              genunix`copen+0x59\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`kmem_cache_free+0x68\n              genunix`unfalloc+0x61\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`kmem_cache_free+0x68\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              unix`tsc_gethrtimeunscaled+0x1b\n              genunix`gethrtime_unscaled+0xa\n              genunix`syscall_mstate+0x5d\n              unix`sys_syscall+0x1a1\n                5\n\n              genunix`thread_lock+0xc\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n                5\n\n              genunix`dnlc_lookup+0xdc\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`audit_getstate+0x2d\n              unix`0xfffffffffb800c91\n                5\n\n              genunix`kmem_cache_alloc+0x3e\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              zfs`zfs_fastaccesschk_execute+0x2e\n              zfs`zfs_lookup+0xc2\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`dnlc_lookup+0xdf\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                5\n\n              genunix`cv_broadcast\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_cache_free+0x70\n              genunix`kmem_free+0x4e\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_free\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_free\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              unix`tsc_read\n              genunix`gethrtime_unscaled+0xa\n              genunix`syscall_mstate+0x5d\n              unix`sys_syscall+0x1a1\n                6\n\n              unix`splx\n              genunix`post_syscall+0x318\n              unix`0xfffffffffb800c91\n                6\n\n              genunix`post_syscall+0x2a1\n              unix`0xfffffffffb800c91\n                6\n\n              unix`copyinstr+0x1\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`lookuppnvp+0x1f1\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`ufalloc_file+0x41\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              unix`mutex_exit+0x12\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              unix`mutex_exit+0x12\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              unix`mutex_exit+0x12\n              genunix`lookuppnvp+0x39f\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`syscall_mstate+0xb4\n              unix`0xfffffffffb800c86\n                6\n\n              genunix`syscall_mstate+0xb4\n              unix`0xfffffffffb800ca0\n                6\n\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_free+0x5\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              lofs`freelonode+0xc7\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`vsd_free+0x17\n              genunix`vn_free+0x8b\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              unix`tsc_read+0x7\n              genunix`gethrtime_unscaled+0xa\n              genunix`syscall_mstate+0x5d\n              unix`sys_syscall+0x10e\n                6\n\n              unix`tsc_read+0x7\n              genunix`gethrtime_unscaled+0xa\n              genunix`syscall_mstate+0x5d\n              unix`0xfffffffffb800ca0\n                6\n\n              genunix`cv_broadcast+0x8\n              genunix`setf+0x8c\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              unix`tsc_gethrtimeunscaled+0x28\n              genunix`gethrtime_unscaled+0xa\n              genunix`syscall_mstate+0x5d\n              unix`sys_syscall+0x10e\n                6\n\n              unix`tsc_gethrtimeunscaled+0x28\n              genunix`gethrtime_unscaled+0xa\n              genunix`syscall_mstate+0x5d\n              unix`0xfffffffffb800ca0\n                6\n\n              genunix`fd_find+0x78\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              unix`mutex_exit+0x19\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`openat+0x1a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_free+0xb\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`vn_vfslocks_rele+0x9e\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`thread_lock+0x1f\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n                6\n\n              genunix`syscall_mstate+0x1c0\n              unix`sys_syscall+0x10e\n                6\n\n              genunix`post_syscall+0x1b3\n              unix`0xfffffffffb800c91\n                6\n\n              genunix`fsop_root+0x26\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              unix`copyinstr+0x16\n              genunix`pn_get_buf+0x43\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`vn_vfslocks_rele+0xa6\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`vn_rele+0x39\n              genunix`traverse+0x9f\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`setf+0xc\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`fsop_root+0x2d\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`falloc+0x1d\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`openat+0x2f\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`pn_get_buf+0x1f\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              unix`bcopy+0x320\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              zfs`specvp_check+0x30\n              zfs`zfs_lookup+0xf4\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`clear_stale_fd\n              unix`0xfffffffffb800c91\n                6\n\n              genunix`dnlc_lookup+0x1\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`lookuppnatcred+0x104\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_cache_alloc+0x66\n              genunix`kmem_zalloc+0x47\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_cache_alloc+0x66\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              lofs`table_lock_enter+0x17\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`vn_free+0x17\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`thread_lock+0x39\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n                6\n\n              genunix`fop_inactive+0x9f\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`vn_vfslocks_getlock\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`vn_vfslocks_getlock+0x1\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`syscall_mstate+0xe3\n              unix`sys_syscall+0x10e\n                6\n\n              lofs`table_lock_enter+0x26\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`vn_vfslocks_rele+0xc6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`vn_vfslocks_getlock+0x8\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`traverse+0xa8\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`lookuppnatcred+0x1a\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_free+0x3a\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              lofs`freelonode+0xfb\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`vn_vfslocks_getlock+0xc\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`lookuppnatcred+0x11c\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              unix`_sys_rtt\n                6\n\n              genunix`ufalloc_file+0x7e\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_cache_free+0xb0\n              genunix`kmem_free+0x4e\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_cache_free+0xb0\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_free+0x43\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`vn_mountedvfs+0x8\n              genunix`traverse+0x77\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_zalloc+0xc8\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              lofs`freelonode+0x109\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_cache_alloc+0x89\n              genunix`falloc+0x63\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_cache_alloc+0x8d\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_cache_free+0xbd\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_cache_free+0xbd\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              unix`splr+0x10\n              genunix`thread_lock+0x24\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n                6\n\n              genunix`fsop_root+0x61\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`vn_rele+0x71\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`dnlc_lookup+0x32\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_cache_alloc+0x92\n              genunix`kmem_zalloc+0x47\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_zalloc+0xd3\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`post_syscall+0x2f5\n              unix`0xfffffffffb800c91\n                6\n\n              genunix`fd_reserve+0x17\n              genunix`setf+0x123\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`rwst_init+0x17\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              unix`splr+0x17\n              genunix`thread_lock+0x24\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n                6\n\n              genunix`kmem_free+0x57\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`copen+0x1d8\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`lookuppnatcred+0x138\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`falloc+0x5c\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`vn_rele+0x7d\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              ufs`ufs_iaccess+0xe\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`syscall_mstate+0x10\n              unix`sys_syscall+0x10e\n                6\n\n              genunix`gethrtime_unscaled\n              unix`sys_syscall+0x10e\n                6\n\n              genunix`dnlc_lookup+0x43\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_alloc+0xd4\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`fd_reserve+0x26\n              genunix`ufalloc_file+0x103\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              lofs`freelonode+0x27\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              unix`sys_syscall+0x15e\n                6\n\n              ufs`ufs_iaccess+0x19\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_zalloc+0xea\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`gethrtime_unscaled+0xa\n              genunix`syscall_mstate+0x5d\n              unix`0xfffffffffb800c86\n                6\n\n              genunix`syscall_mstate+0x1b\n              unix`sys_syscall+0x1a1\n                6\n\n              lofs`table_lock_enter+0x5c\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`vn_vfslocks_getlock+0x3c\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              unix`prunstop+0xd\n              genunix`post_syscall+0x2d0\n              unix`0xfffffffffb800c91\n                6\n\n              ufs`ufs_iaccess+0x1d\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`vn_vfslocks_rele\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`vn_openat+0xa1\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              lofs`lo_root+0x62\n              genunix`fsop_root+0x2d\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`cv_broadcast+0x72\n              genunix`rwst_exit+0x8f\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`fd_reserve+0x33\n              genunix`setf+0x123\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`rwst_exit+0x23\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              lofs`freelonode+0x37\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`vn_vfslocks_rele+0x8\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`vn_vfslocks_rele+0x8\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_cache_free+0xe8\n              genunix`unfalloc+0x61\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`syscall_mstate+0x2a\n              unix`0xfffffffffb800ca0\n                6\n\n              genunix`post_syscall+0x31b\n              unix`0xfffffffffb800c91\n                6\n\n              genunix`post_syscall+0x1f\n              unix`0xfffffffffb800c91\n                6\n\n              genunix`vn_invalid\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              zfs`zfs_lookup+0x21\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_cache_free+0xf1\n              genunix`unfalloc+0x61\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_cache_free+0xf1\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`dnlc_lookup+0x62\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`post_syscall+0x324\n              unix`0xfffffffffb800c91\n                6\n\n              genunix`falloc+0x84\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`vn_vfslocks_rele+0x17\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`rwst_init+0x47\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`post_syscall+0x27\n              unix`0xfffffffffb800c91\n                6\n\n              genunix`cv_destroy+0x8\n              genunix`rwst_destroy+0x2e\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`fd_reserve+0x48\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`syscall_mstate+0x139\n              unix`sys_syscall+0x10e\n                6\n\n              genunix`syscall_mstate+0x3a\n              unix`sys_syscall+0x1a1\n                6\n\n              genunix`kmem_cache_free+0xfa\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`cv_destroy+0xc\n              genunix`rwst_destroy+0x25\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`pn_fixslash+0x3d\n              genunix`lookuppnvp+0x105\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`lookuppnatcred+0x16f\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              lofs`lo_inactive\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_cache_free\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_alloc\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`post_syscall+0x134\n              unix`0xfffffffffb800c91\n                6\n\n              genunix`fop_lookup+0xa5\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              lofs`lo_inactive+0x8\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_cache_free+0x8\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              lofs`lsave+0x7a\n              lofs`makelonode+0x1df\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`pn_fixslash+0x4b\n              genunix`lookuppnvp+0x105\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              unix`sys_syscall+0x192\n                6\n\n              genunix`dnlc_lookup+0x7d\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`vn_vfslocks_getlock+0x6e\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`unfalloc\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`rwst_destroy\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`ufalloc_file+0xe3\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`memcmp+0x17\n              unix`bcmp+0x9\n              genunix`dnlc_lookup+0x10d\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`fop_inactive+0x17\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_cache_free+0x17\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_cache_free+0x17\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`fop_lookup+0xbb\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`vn_vfslocks_getlock+0x7d\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`syscall_mstate+0x5d\n              unix`sys_syscall+0x1a1\n                6\n\n              genunix`rwst_exit+0x5d\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`copen+0x33\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`vn_vfslocks_rele+0x46\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`traverse+0x26\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_cache_free+0x2b\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_cache_alloc+0xfc\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              ufs`ufs_lookup+0xfd\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              unix`rw_exit+0x1e\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`copen+0x13f\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              unix`bcopy+0x3c0\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`lookupnameat+0x20\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`lookuppnvp+0x1b7\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`syscall_mstate+0x177\n              unix`sys_syscall+0x1a1\n                6\n\n              genunix`kmem_cache_alloc+0x8\n              genunix`falloc+0x63\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_cache_free+0x3a\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`dnlc_lookup+0x1ad\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`rwst_destroy+0x2e\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`fd_find+0x3f\n              genunix`ufalloc_file+0x91\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`ufalloc_file+0x10f\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`audit_getstate\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              unix`mutex_enter\n              genunix`unfalloc+0x61\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              unix`mutex_enter\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              unix`mutex_enter\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              unix`mutex_enter\n              zfs`zfs_lookup+0xc2\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              unix`mutex_enter\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              unix`mutex_enter\n              genunix`falloc+0x63\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`audit_getstate+0x1\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`lookuppnvp+0xc3\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`rwst_destroy+0x33\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`vn_vfslocks_getlock+0xa6\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`rwst_exit+0x86\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              ufs`ufs_lookup+0x17\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              zfs`zfs_fastaccesschk_execute+0x8\n              zfs`zfs_lookup+0xc2\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              zfs`zfs_lookup+0x7a\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`audit_getstate+0xa\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`setf+0xcc\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`crgetmapped+0x2e\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`post_syscall+0x7f\n              unix`0xfffffffffb800c91\n                6\n\n              genunix`vn_rele\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              unix`mutex_destroy\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`traverse+0x52\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`rwst_enter_common+0x162\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`ufalloc_file+0x26\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              unix`tsc_gethrtimeunscaled+0x8\n              genunix`gethrtime_unscaled+0xa\n              genunix`syscall_mstate+0x5d\n              unix`0xfffffffffb800ca0\n                6\n\n              unix`mutex_destroy+0x8\n              genunix`rwst_destroy+0x1c\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`thread_lock\n              unix`0xfffffffffb800c91\n                6\n\n              genunix`vn_rele+0x10\n              ufs`ufs_lookup+0x36d\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              zfs`specvp_check\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`vsd_free\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              unix`mutex_exit\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              unix`mutex_exit\n              genunix`fsop_root+0x2d\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              unix`mutex_exit\n              lofs`freelonode+0x1fe\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              unix`mutex_exit\n              genunix`falloc+0x63\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`syscall_mstate+0xa2\n              unix`0xfffffffffb800ca0\n                6\n\n              unix`do_splx+0x74\n              genunix`disp_lock_exit+0x47\n              genunix`post_syscall+0x318\n              unix`0xfffffffffb800c91\n                6\n\n              zfs`zfs_fastaccesschk_execute+0x26\n              zfs`zfs_lookup+0xc2\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`vn_vfsunlock+0x8\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`kmem_cache_free+0x68\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              lofs`freelonode+0xb9\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              lofs`freelonode+0xb9\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`lookuppnvp+0x1e9\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              unix`do_splx+0x79\n              genunix`post_syscall+0x318\n              unix`0xfffffffffb800c91\n                6\n\n              unix`bcopy+0x3fa\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`syscall_mstate+0x1ab\n              unix`sys_syscall+0x1a1\n                6\n\n              genunix`traverse+0x6f\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                6\n\n              genunix`thread_lock+0x10\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n                7\n\n              genunix`kmem_cache_free+0x70\n              genunix`unfalloc+0x61\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`kmem_cache_free+0x70\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              unix`tsc_read\n              genunix`gethrtime_unscaled+0xa\n              genunix`syscall_mstate+0x5d\n              unix`sys_syscall+0x10e\n                7\n\n              genunix`cv_broadcast+0x1\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              unix`mutex_exit+0x12\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`thread_lock+0x17\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n                7\n\n              unix`tsc_gethrtimeunscaled+0x28\n              genunix`gethrtime_unscaled+0xa\n              genunix`syscall_mstate+0x5d\n              unix`sys_syscall+0x1a1\n                7\n\n              zfs`zfs_fastaccesschk_execute+0x138\n              zfs`zfs_lookup+0xc2\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`vn_openat+0x3d\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`dnlc_lookup+0xef\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`falloc+0xf\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              unix`bcopy+0x310\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`lookuppnvp\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              lofs`lo_root+0x1\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              lofs`makelonode+0x1c4\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              unix`tsc_gethrtimeunscaled+0x34\n              genunix`syscall_mstate+0x5d\n              unix`sys_syscall+0x10e\n                7\n\n              genunix`lookuppnatcred+0xf5\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`cv_broadcast+0x17\n              genunix`setf+0x8c\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`vn_free+0x8\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`vn_rele+0x39\n              lofs`freelonode+0x1fe\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              unix`copyinstr+0x1b\n              genunix`pn_get_buf+0x43\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`fop_inactive+0x8b\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`dnlc_lookup+0xfc\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`fop_lookup+0x12d\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              ufs`ufs_lookup+0x365\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`kmem_cache_alloc+0x66\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`vn_vfslocks_getlock\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`ufalloc\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`clear_stale_fd+0x13\n              genunix`post_syscall+0x1fe\n              unix`0xfffffffffb800c91\n                7\n\n              genunix`lookuppnvp+0x29\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`copen+0x2ba\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              lofs`freelonode+0xfb\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`vn_free+0x2b\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`setf+0x12b\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`fop_inactive+0xab\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              unix`sys_syscall+0x132\n                7\n\n              genunix`audit_falloc\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              lofs`freelonode+0x1\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`disp_lock_exit+0x32\n              genunix`post_syscall+0x318\n              unix`0xfffffffffb800c91\n                7\n\n              genunix`open+0x26\n                7\n\n              genunix`thread_lock+0x57\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n                7\n\n              genunix`syscall_mstate+0x1f7\n              unix`sys_syscall+0x1a1\n                7\n\n              lofs`freelonode+0x8\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`rwst_enter_common+0x2cb\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              unix`mutex_destroy+0x6b\n              genunix`rwst_destroy+0x1c\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`vn_mountedvfs+0xc\n              genunix`traverse+0x77\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`kmem_cache_alloc+0x8d\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`pn_get_buf+0x4f\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`setf+0x3f\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`pn_get_buf+0x50\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`lookuppnatcred+0x30\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`vn_mountedvfs+0x10\n              genunix`traverse+0x77\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              zfs`zfs_lookup+0xf4\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              lofs`freelonode+0x115\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              lofs`lo_lookup+0x275\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`cv_init+0x8\n              genunix`rwst_init+0x47\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              lofs`freelonode+0x21e\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`lookuppnatcred+0x3f\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`gethrtime_unscaled\n              unix`0xfffffffffb800ca0\n                7\n\n              genunix`fop_lookup+0x73\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`kmem_alloc+0xd4\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`lookuppnvp+0x458\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`rwst_exit+0x18\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`rwst_init+0x28\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`syscall_mstate+0x119\n              unix`0xfffffffffb800c86\n                7\n\n              genunix`syscall_mstate+0x1b\n              unix`sys_syscall+0x10e\n                7\n\n              genunix`kmem_cache_free+0xdb\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`syscall_mstate+0x11c\n              unix`sys_syscall+0x1a1\n                7\n\n              lofs`freelonode+0x2f\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`vn_free+0x66\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`syscall_mstate+0x26\n              unix`0xfffffffffb800c86\n                7\n\n              genunix`syscall_mstate+0x26\n              unix`0xfffffffffb800ca0\n                7\n\n              genunix`fd_reserve+0x37\n              genunix`setf+0x123\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              ufs`ufs_iaccess+0x28\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`vn_vfslocks_rele+0x8\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`rwst_init+0x38\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              unix`bcmp+0x9\n              genunix`dnlc_lookup+0x10d\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`syscall_mstate+0x2a\n              unix`sys_syscall+0x1a1\n                7\n\n              genunix`dnlc_lookup+0x5f\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              unix`bcmp+0xf\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`fd_reserve+0x40\n              genunix`setf+0x123\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              unix`do_splx+0x1\n              genunix`post_syscall+0x318\n              unix`0xfffffffffb800c91\n                7\n\n              genunix`rwst_exit+0x35\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              lofs`lo_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`vn_vfslocks_rele+0x17\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`vn_invalid+0x8\n              lofs`freelonode+0x115\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`kmem_cache_free+0xfa\n              genunix`kmem_free+0x4e\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`kmem_cache_free+0xfa\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`rwst_enter_common+0xb\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`cv_destroy+0xc\n              genunix`rwst_destroy+0x2e\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              zfs`zfs_lookup+0x2c\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`vn_vfsrlock\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              unix`lock_clear_splx\n              genunix`post_syscall+0x318\n              unix`0xfffffffffb800c91\n                7\n\n              unix`strlen+0x3\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`rwst_exit+0x44\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`vn_vfslocks_getlock+0x66\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`falloc+0x97\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`kmem_cache_free+0x8\n              genunix`unfalloc+0x61\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`kmem_cache_free+0x8\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`vn_free+0x8b\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`kmem_alloc+0xb\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`lookuppnatcred+0x7c\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`setf+0x8c\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`vn_invalid+0x1d\n              lofs`freelonode+0x115\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`vn_vfslocks_getlock+0x6e\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`ufalloc_file+0xde\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              lofs`lo_inactive+0x10\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              unix`copystr+0x14\n              genunix`pn_get_buf+0x43\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              lofs`makelfsnode+0x17\n              lofs`makelonode+0x192\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`kmem_cache_free+0x17\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              lofs`lo_inactive+0x18\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              lofs`lo_inactive+0x18\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`vn_vfsrlock+0x18\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`syscall_mstate+0x58\n              unix`0xfffffffffb800ca0\n                7\n\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`secpolicy_vnode_access2+0x1e\n              ufs`ufs_iaccess+0x128\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`rwst_enter_common+0x331\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`dnlc_lookup+0x195\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`memcmp+0x26\n              unix`bcmp+0x9\n              genunix`dnlc_lookup+0x10d\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`fop_inactive+0x26\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`syscall_mstate+0x69\n              unix`sys_syscall+0x10e\n                7\n\n              genunix`falloc+0xbc\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`rwst_destroy+0x1c\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`syscall_mstate+0x170\n              unix`sys_syscall+0x1a1\n                7\n\n              genunix`syscall_mstate+0x71\n              unix`0xfffffffffb800c86\n                7\n\n              zfs`zfs_lookup+0x63\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`crgetmapped+0x15\n              genunix`fop_inactive+0x60\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`kmem_cache_free+0x3a\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`vn_vfslocks_rele+0x5c\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`fop_lookup+0x1e0\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`audit_getstate\n              unix`0xfffffffffb800c91\n                7\n\n              genunix`kmem_cache_alloc+0x10\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              unix`mutex_enter\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              unix`mutex_enter\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              unix`mutex_enter\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`audit_getstate+0x1\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`pn_getcomponent+0x14\n              genunix`lookuppnvp+0x16d\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`vn_openat+0x307\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`kmem_cache_alloc+0x17\n              genunix`kmem_zalloc+0x47\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              lofs`makelonode+0x89\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`audit_getstate+0xa\n              unix`0xfffffffffb800c91\n                7\n\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`fop_lookup+0xed\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`crgetmapped+0x2e\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              lofs`freelonode+0x1a0\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              zfs`zfs_lookup+0x80\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`kmem_cache_alloc+0x22\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`fop_inactive+0x53\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`fop_inactive+0x53\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`post_syscall+0x85\n              unix`0xfffffffffb800c91\n                7\n\n              genunix`vn_setpath+0x26\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`kmem_cache_alloc+0x26\n              genunix`falloc+0x63\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              unix`mutex_destroy+0x8\n              genunix`rwst_destroy+0x1c\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`kmem_cache_alloc+0x2a\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`fop_lookup+0xfc\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              lofs`makelonode+0x1a0\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              unix`mutex_exit\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              unix`mutex_exit\n              lofs`freelonode+0x1fe\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`vn_rele+0x17\n              lofs`freelonode+0x1fe\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              unix`copystr+0x67\n              genunix`pn_get_buf+0x43\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              unix`mutex_init+0x27\n              genunix`rwst_init+0x38\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`kmem_cache_free+0x68\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`fop_lookup+0x20b\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`fop_lookup+0x10c\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`fop_inactive+0x6d\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                7\n\n              genunix`falloc\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`kmem_cache_free+0x70\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              unix`mutex_exit+0x12\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              unix`mutex_exit+0x12\n              genunix`kmem_free+0x4e\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              unix`mutex_exit+0x12\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`kmem_free+0x5\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`copen+0x86\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`unfalloc+0x66\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`kmem_cache_alloc+0x46\n              genunix`kmem_alloc+0x4b\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              zfs`specvp_check+0x17\n              zfs`zfs_lookup+0xf4\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`kmem_cache_alloc+0x49\n              genunix`kmem_alloc+0x4b\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              unix`mutex_exit+0x19\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              unix`mutex_exit+0x19\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              unix`mutex_exit+0x19\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`thread_lock+0x1b\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n                8\n\n              unix`mutex_init+0x3d\n              genunix`rwst_init+0x38\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`kmem_cache_alloc+0x4e\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              lofs`lo_lookup+0x30\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`copen+0x195\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`vn_vfslocks_rele+0xa6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              lofs`freelonode+0xdd\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              lofs`freelonode+0xdd\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`vn_rele+0x3e\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`fop_inactive+0x90\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`vn_vfslocks_getlock+0xf2\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              zfs`zfs_lookup+0xc2\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`vn_vfslocks_rele+0xb3\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`syscall_mstate+0x1d4\n              unix`sys_syscall+0x10e\n                8\n\n              lofs`lsave+0x8\n              lofs`makelonode+0x1df\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`fop_lookup+0x13d\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`disp_lock_exit+0x1e\n              genunix`post_syscall+0x318\n              unix`0xfffffffffb800c91\n                8\n\n              genunix`syscall_mstate+0xe3\n              unix`0xfffffffffb800c86\n                8\n\n              lofs`lo_root+0x25\n              genunix`fsop_root+0x2d\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`disp_lock_exit+0x30\n              genunix`post_syscall+0x318\n              unix`0xfffffffffb800c91\n                8\n\n              genunix`rwst_init\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`kmem_free+0x43\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`vn_setpath+0x85\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              lofs`table_lock_enter+0x38\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`vn_rele+0x68\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`rwst_enter_common+0x1c8\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`syscall_mstate+0xf8\n              unix`0xfffffffffb800c86\n                8\n\n              genunix`kmem_cache_free+0xbd\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`kmem_cache_free+0xbd\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              lofs`lo_lookup+0x26f\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`pn_fixslash\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`lookuppnvp+0x240\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`vn_mountedvfs+0x11\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`rwst_enter_common+0x2d7\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`kmem_free+0x57\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`syscall_mstate+0x108\n              unix`0xfffffffffb800ca0\n                8\n\n              genunix`vn_vfslocks_getlock+0x29\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`vn_vfslocks_getlock+0x29\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`rwst_enter_common+0x2db\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`fop_lookup+0x6d\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              unix`mutex_destroy+0x7f\n              genunix`rwst_destroy+0x1c\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`syscall_mstate+0x10\n              unix`0xfffffffffb800ca0\n                8\n\n              genunix`kmem_alloc+0xd4\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              lofs`table_lock_enter+0x57\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`syscall_mstate+0x17\n              unix`sys_syscall+0x10e\n                8\n\n              genunix`rwst_exit+0x18\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`gethrtime_unscaled+0xa\n              genunix`syscall_mstate+0x5d\n              unix`sys_syscall+0x1a1\n                8\n\n              lofs`makelonode+0x1b\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`rwst_enter_common+0x1ec\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`copen+0x4ee\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`post_syscall+0xf\n              unix`0xfffffffffb800c91\n                8\n\n              genunix`post_syscall+0x318\n              unix`0xfffffffffb800c91\n                8\n\n              genunix`kmem_cache_free+0xe8\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              lofs`freelonode+0x23a\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`fop_lookup+0x8a\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`kmem_cache_free+0xf1\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`kmem_cache_free+0xf1\n              genunix`kmem_free+0x4e\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`syscall_mstate+0x132\n              unix`sys_syscall+0x1a1\n                8\n\n              genunix`syscall_mstate+0x135\n              unix`sys_syscall+0x10e\n                8\n\n              genunix`vn_free+0x78\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`kmem_cache_free+0xfa\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`kmem_cache_free+0xfa\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`cv_destroy+0xc\n              genunix`rwst_destroy+0x2e\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`kmem_zalloc+0xc\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              lofs`freelonode+0x4f\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              lofs`lo_inactive+0x8\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`kmem_cache_free+0x8\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`secpolicy_vnode_access2+0x8\n              ufs`ufs_iaccess+0x128\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`copen+0x21b\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              zfs`zfs_lookup+0x3b\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              lofs`lo_inactive+0xc\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`rwst_exit+0x4c\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              unix`strlen+0x10\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`secpolicy_vnode_access2+0x13\n              ufs`ufs_iaccess+0x128\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`kmem_cache_alloc+0xe4\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`syscall_mstate+0x157\n              unix`0xfffffffffb800ca0\n                8\n\n              genunix`kmem_cache_free+0x1b\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`vn_vfslocks_getlock+0x7d\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`syscall_mstate+0x5d\n              unix`sys_syscall+0x10e\n                8\n\n              genunix`rwst_exit+0x5d\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`lookuppnvp+0xa2\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              zfs`zfs_lookup+0x52\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`memcmp+0x23\n              unix`bcmp+0x9\n              genunix`dnlc_lookup+0x10d\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`kmem_cache_alloc+0xf3\n              genunix`falloc+0x63\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              lofs`lfind+0x16\n              lofs`makelonode+0x47\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`vn_vfslocks_getlock+0x86\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`copen+0x37\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`rwst_destroy+0x17\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`fop_lookup+0x1c8\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`rwst_enter_common+0x38\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`kmem_alloc+0x2a\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`fop_lookup+0xcb\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`memcmp+0x2c\n              unix`bcmp+0x9\n              genunix`dnlc_lookup+0x10d\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`dnlc_lookup+0xa0\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              unix`atomic_add_32\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`vn_alloc\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`secpolicy_vnode_access2+0x34\n              ufs`ufs_iaccess+0x128\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`vsd_free+0xd8\n              genunix`vn_recycle+0xb5\n              genunix`vn_reinit+0x7b\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              lofs`freelonode+0x189\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`fd_find+0x3a\n              genunix`ufalloc_file+0x91\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`kmem_cache_free+0x3a\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`kmem_cache_alloc+0xc\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`audit_unfalloc+0x4d\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`kmem_cache_free+0x3f\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`fop_lookup+0xe0\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              unix`mutex_enter\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              unix`mutex_enter\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              unix`mutex_enter\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              ufs`ufs_lookup+0x111\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`syscall_mstate+0x84\n              unix`sys_syscall+0x10e\n                8\n\n              genunix`kmem_cache_alloc+0x17\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              unix`mutex_enter+0x9\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              lofs`freelonode+0x9d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`rwst_enter_common+0x15f\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`vn_rele\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              ufs`ufs_lookup+0x22\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              unix`mutex_init+0x17\n              genunix`rwst_init+0x38\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`audit_getstate+0x18\n              genunix`copen+0x59\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`kmem_cache_alloc+0x2a\n              genunix`kmem_alloc+0x4b\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`ufalloc_file+0x12f\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`vn_vfsunlock\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              unix`mutex_exit\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              unix`mutex_exit\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`fd_find+0x62\n              genunix`ufalloc_file+0x91\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`post_syscall+0x93\n              unix`0xfffffffffb800c91\n                8\n\n              genunix`vn_vfslocks_getlock+0xc4\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              unix`bcopy+0x3f5\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`kmem_cache_alloc+0x3a\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`audit_getstate+0x2c\n              genunix`post_syscall+0xbe\n              unix`0xfffffffffb800c91\n                8\n\n              genunix`kmem_cache_alloc+0x3e\n              genunix`kmem_alloc+0x4b\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                8\n\n              genunix`kmem_cache_free+0x70\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`kmem_cache_free+0x70\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              unix`tsc_read\n              genunix`gethrtime_unscaled+0xa\n              genunix`syscall_mstate+0x5d\n              unix`0xfffffffffb800ca0\n                9\n\n              unix`mutex_exit+0x12\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              unix`mutex_exit+0x12\n              zfs`zfs_lookup+0xc2\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              unix`mutex_exit+0x12\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              unix`mutex_exit+0x12\n              genunix`falloc+0x63\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`audit_getstate+0x33\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`vsd_free+0x17\n              genunix`vn_recycle+0xb5\n              genunix`vn_reinit+0x7b\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              unix`mutex_exit+0x19\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`openat+0x1e\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`vn_recycle+0x90\n              genunix`vn_reinit+0x7b\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`fd_find+0x80\n              genunix`ufalloc_file+0x91\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`setf\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`thread_lock+0x24\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n                9\n\n              genunix`kmem_free+0x17\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              lofs`table_lock_enter+0x8\n              lofs`makelonode+0x36\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`vn_rele+0x39\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`lookuppnatcred\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`lookuppnvp+0x217\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`kmem_free+0x2a\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`vn_vfslocks_getlock+0x106\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`kmem_cache_alloc+0x77\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`vn_vfslocks_getlock+0x8\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`rwst_enter_common+0x1b8\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`post_syscall+0xda\n              unix`0xfffffffffb800c91\n                9\n\n              genunix`fsop_root+0x4b\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`vn_setops+0x30\n              lofs`makelonode+0x1c4\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`kmem_cache_free+0xb0\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`lookuppnvp+0x132\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              lofs`table_lock_enter+0x38\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`rwst_init+0x8\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`kmem_cache_free+0xbd\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`rwst_exit\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`disp_lock_exit+0x47\n              genunix`post_syscall+0x318\n              unix`0xfffffffffb800c91\n                9\n\n              genunix`rwst_enter_common+0x1d8\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`rwst_enter_common+0x2dc\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`rwst_enter_common+0x2dc\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              lofs`freelonode+0x21e\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              unix`mutex_destroy+0x7f\n              genunix`rwst_destroy+0x1c\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              lofs`table_lock_enter+0x50\n              lofs`makelonode+0x36\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              lofs`makelonode+0x10\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              zfs`zfs_lookup+0x1\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`post_syscall+0x1\n                9\n\n              genunix`copen+0x4e3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              ufs`ufs_iaccess+0x15\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`rwst_enter_common+0x1e8\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`cv_init+0x19\n              genunix`rwst_init+0x47\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`cv_init+0x19\n              genunix`rwst_init+0x56\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`kmem_cache_free+0xdb\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`kmem_cache_free+0xdb\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`vn_vfslocks_getlock+0x3c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              lofs`freelonode+0x22e\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`vn_vfslocks_getlock+0x41\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`vn_vfslocks_getlock+0x41\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              lofs`freelonode+0x33\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`kmem_cache_free+0xe8\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`cv_broadcast+0x7f\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`cv_destroy+0x1\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`rwst_init+0x42\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`fop_lookup+0x93\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              lofs`lo_root+0x77\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`vn_vfslocks_getlock+0x59\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`kmem_cache_free+0xfa\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`cv_destroy+0xc\n              genunix`rwst_destroy+0x25\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`kmem_cache_free\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`kmem_cache_free\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`kmem_cache_free\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              unix`strlen\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`lookuppnvp+0x182\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`kmem_alloc+0x5\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`post_syscall+0x35\n              unix`0xfffffffffb800c91\n                9\n\n              lofs`makelfsnode+0x8\n              lofs`makelonode+0x192\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`kmem_cache_free+0x8\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`vn_vfslocks_rele+0x29\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`vn_vfsrlock+0x9\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`rwst_enter_common+0x1b\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`rwst_enter_common+0x1b\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`kmem_cache_free+0xc\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`syscall_mstate+0x14d\n              unix`0xfffffffffb800c86\n                9\n\n              genunix`vn_openat+0xd1\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`rwst_exit+0x54\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`kmem_cache_alloc+0xe4\n              genunix`vn_alloc+0x1a\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              lofs`lo_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`fop_inactive+0x17\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`kmem_cache_free+0x17\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`kmem_cache_free+0x17\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`kmem_alloc+0x17\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`vn_setpath+0xea\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`kmem_cache_alloc+0xf3\n              genunix`vn_alloc+0x1a\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`kmem_cache_alloc+0xf3\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`vn_vfslocks_getlock+0x88\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`kmem_cache_free+0x2b\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`vn_openat+0x2ef\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`kmem_cache_alloc\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`fd_find+0x36\n              genunix`ufalloc_file+0x91\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`vfs_getops+0x3b\n              lofs`lo_lookup+0x1e6\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`kmem_alloc+0x3b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`fop_lookup+0x1dc\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`kmem_cache_free+0x3f\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`secpolicy_vnode_access2+0x3f\n              ufs`ufs_iaccess+0x128\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              unix`mutex_enter\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`copen+0x156\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`secpolicy_vnode_access2+0x46\n              ufs`ufs_iaccess+0x128\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              unix`mutex_enter+0x9\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`rwst_exit+0x8f\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              lofs`freelonode+0x1a0\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`vn_rele\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`traverse+0x52\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`lookuppnvp+0xd6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              lofs`freelonode+0xa8\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              unix`mutex_exit\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`vn_setpath+0x35\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`kmem_cache_free+0x68\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`kmem_cache_free+0x68\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`kmem_cache_alloc+0x3a\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`vn_setpath+0x13b\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              unix`mutex_exit+0xc\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              lofs`freelonode+0x1bd\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n                9\n\n              genunix`kmem_cache_free+0x70\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              unix`mutex_exit+0x12\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              unix`mutex_exit+0x12\n              genunix`vn_alloc+0x1a\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`vsd_free+0x17\n              genunix`vn_free+0x8b\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              unix`mutex_exit+0x19\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              lofs`table_lock_enter\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`disp_lock_exit\n              unix`0xfffffffffb800c91\n               10\n\n              genunix`dnlc_lookup+0xf2\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`vn_openat+0x43\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`cv_broadcast+0x17\n              genunix`rwst_exit+0x8f\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              lofs`lsave\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`open\n               10\n\n              genunix`vn_vfslocks_rele+0xb3\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`vn_setpath+0x66\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              lofs`table_lock_enter+0x17\n              lofs`makelonode+0x36\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              unix`sys_syscall+0x121\n               10\n\n              genunix`fop_inactive+0xa3\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              lofs`table_lock_enter+0x26\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`kmem_cache_alloc+0x77\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`syscall_mstate+0x1ef\n              unix`sys_syscall+0x1a1\n               10\n\n              genunix`vn_reinit\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`kmem_cache_free+0xb0\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`lookuppnatcred+0x25\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`vn_vfslocks_getlock+0x17\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`vn_rele+0x68\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              lofs`freelonode+0x109\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`cv_init+0x1\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`kmem_cache_alloc+0x92\n              genunix`vn_alloc+0x1a\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`thread_lock+0x167\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n               10\n\n              genunix`rwst_enter_common+0x2d7\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`kmem_alloc+0xc8\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`lookuppnatcred+0x3b\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              zfs`zfs_lookup\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`pn_fixslash+0x14\n              genunix`lookuppnvp+0x105\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              lofs`table_lock_enter+0x57\n              lofs`makelonode+0x36\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`vn_vfslocks_getlock+0x3c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`rwst_enter_common+0x1ec\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`lookuppnvp+0x45f\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`vn_vfslocks_rele\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`syscall_mstate+0x123\n              unix`sys_syscall+0x1a1\n               10\n\n              genunix`vn_setpath+0xb8\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              lofs`freelonode+0x23a\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`dnlc_lookup+0x5c\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              lofs`table_lock_enter+0x6d\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`vn_openat+0xb1\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`kmem_cache_free+0xf1\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`cv_destroy+0xd\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              lofs`lo_inactive\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`vn_vfsrlock\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              unix`strlen\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`syscall_mstate+0x41\n              unix`0xfffffffffb800ca0\n               10\n\n              genunix`rwst_init+0x51\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`lookupnameatcred+0xf\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              lofs`lfind\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`vn_setpath+0xe2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`kmem_cache_alloc+0xe4\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`vfs_getops+0x17\n              genunix`vfs_matchops+0x1c\n              lofs`lo_lookup+0x1e6\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`kmem_cache_free+0x17\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`kmem_alloc+0x1b\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`dnlc_lookup+0x8f\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`memcmp+0x20\n              unix`bcmp+0x9\n              genunix`dnlc_lookup+0x10d\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`lookupnameat+0x14\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`vn_vfslocks_getlock+0x88\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`crgetmapped+0x8\n              genunix`fop_inactive+0x60\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`fop_lookup+0xcd\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`secpolicy_vnode_access2+0x2d\n              ufs`ufs_iaccess+0x128\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`kmem_alloc+0x2e\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`vn_vfslocks_getlock+0x90\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`kmem_cache_alloc\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`lookupnameatcred+0x31\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              lofs`makelonode+0x17d\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              unix`atomic_add_64\n              unix`0xfffffffffb800c86\n               10\n\n              genunix`vfs_getops+0x40\n              genunix`vfs_matchops+0x1c\n              lofs`lo_lookup+0x1e6\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`audit_getstate\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              unix`mutex_enter\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              unix`mutex_enter\n              lofs`freelonode+0x1fe\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`secpolicy_vnode_access2+0x43\n              ufs`ufs_iaccess+0x128\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`kmem_cache_alloc+0x17\n              genunix`kmem_alloc+0x4b\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`vsd_free+0xe8\n              genunix`vn_recycle+0xb5\n              genunix`vn_reinit+0x7b\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              unix`mutex_init+0x8\n              genunix`rwst_init+0x38\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`vn_alloc+0x1a\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`thread_lock+0xed\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n               10\n\n              genunix`fop_inactive+0x4e\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              lofs`freelonode+0xa0\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              unix`tsc_gethrtimeunscaled\n              genunix`syscall_mstate+0x5d\n              unix`0xfffffffffb800c86\n               10\n\n              unix`tsc_gethrtimeunscaled\n              genunix`syscall_mstate+0x5d\n              unix`0xfffffffffb800ca0\n               10\n\n              unix`tsc_gethrtimeunscaled\n              genunix`syscall_mstate+0x5d\n              unix`sys_syscall+0x1a1\n               10\n\n              genunix`vn_rele+0x8\n              lofs`freelonode+0x1fe\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`openat\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`vsd_free\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              unix`mutex_exit\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              unix`mutex_exit\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              unix`mutex_exit\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`vn_vfslocks_getlock+0xc4\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              genunix`fd_find+0x67\n              genunix`ufalloc_file+0x91\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              unix`mutex_init+0x27\n              genunix`rwst_init+0x38\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               10\n\n              unix`bcopy+0x300\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              unix`tsc_read\n              genunix`gethrtime_unscaled+0xa\n              genunix`syscall_mstate+0x5d\n              unix`0xfffffffffb800c86\n               11\n\n              lofs`freelonode+0x1c1\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`vn_rele+0x24\n              lofs`freelonode+0x1fe\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`post_syscall+0x1a5\n              unix`0xfffffffffb800c91\n               11\n\n              genunix`kmem_cache_alloc+0x4e\n              genunix`kmem_alloc+0x4b\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`vn_free\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`fop_lookup+0x126\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              lofs`table_lock_enter+0x8\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`vn_setops+0x8\n              lofs`makelonode+0x1c4\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`vn_rele+0x3e\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`kmem_free+0x26\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`vn_vfslocks_getlock+0x106\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`kmem_cache_alloc+0x79\n              genunix`vn_alloc+0x1a\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`vn_free+0x2b\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`vn_free+0x2f\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`vn_rele+0x60\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`vn_mountedvfs\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`kmem_cache_free+0xb0\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`syscall_mstate+0x1f3\n              unix`sys_syscall+0x1a1\n               11\n\n              genunix`kmem_free+0x43\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              lofs`lsave+0x26\n              lofs`makelonode+0x1df\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`ufalloc_file+0x86\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`vn_vfslocks_getlock+0x17\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`rwst_enter_common+0x2c7\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`vn_mountedvfs+0x8\n              genunix`traverse+0x77\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`kmem_cache_free+0xbd\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`post_syscall+0x5f0\n              unix`0xfffffffffb800c91\n               11\n\n              genunix`kmem_cache_alloc+0x92\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              lofs`makelonode+0x8\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`vn_rele+0x78\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`syscall_mstate+0xc\n              unix`sys_syscall+0x10e\n               11\n\n              genunix`post_syscall+0x1fe\n              unix`0xfffffffffb800c91\n               11\n\n              lofs`lsave+0x42\n              lofs`makelonode+0x1df\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              lofs`makelonode+0x26\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`kmem_cache_free+0xe8\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`pn_fixslash+0x2c\n              genunix`lookuppnvp+0x105\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`cv_destroy\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              lofs`makelonode+0x36\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              lofs`lo_lookup+0x1a8\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`vn_setpath+0xce\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              lofs`makelonode+0x42\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`rwst_init+0x56\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`vn_vfsrlock+0x9\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`rwst_init+0x5a\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`vn_invalid+0x1d\n              lofs`freelonode+0x115\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`fop_lookup+0xb2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`kmem_alloc+0x17\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`secpolicy_vnode_access2+0x218\n              ufs`ufs_iaccess+0x128\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`kmem_cache_free+0x1b\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`unfalloc+0xc\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`syscall_mstate+0x5d\n              unix`0xfffffffffb800ca0\n               11\n\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`rwst_enter_common+0x331\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`kmem_cache_alloc+0xf3\n              genunix`kmem_alloc+0x4b\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`ufalloc_file\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`kmem_cache_alloc\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`rwst_enter_common+0x341\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              lofs`lfind+0x24\n              lofs`makelonode+0x47\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              lofs`freelonode+0x88\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`vn_setpath+0x8\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`kmem_cache_free+0x3a\n              genunix`kmem_free+0x4e\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`fop_lookup+0xdd\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              unix`mutex_enter\n              genunix`kmem_alloc+0x4b\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`rwst_destroy+0x33\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              lofs`lfind+0x35\n              lofs`makelonode+0x47\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`vn_vfslocks_getlock+0xa6\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`kmem_alloc+0x46\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              unix`bcopy+0x2d7\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`vn_setpath+0x17\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`vsd_free+0xe8\n              genunix`vn_free+0x8b\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              unix`mutex_enter+0x9\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              unix`mutex_enter+0x9\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`fop_lookup+0xea\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`crgetmapped+0x2a\n              genunix`fop_inactive+0x60\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`syscall_mstate+0x18c\n              unix`0xfffffffffb800ca0\n               11\n\n              genunix`rwst_exit+0x8f\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              unix`tsc_gethrtimeunscaled\n              genunix`syscall_mstate+0x5d\n              unix`sys_syscall+0x10e\n               11\n\n              genunix`vn_vfslocks_getlock+0xb4\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              ufs`ufs_lookup+0x2d\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`rwst_tryenter+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`fop_inactive+0x60\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`vn_setpath+0x31\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              genunix`vn_openat+0x124\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              ufs`ufs_lookup+0x34\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               11\n\n              unix`copyinstr\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`vn_alloc+0x43\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`kmem_cache_alloc+0x4e\n              genunix`vn_alloc+0x1a\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`vn_rele+0x31\n              lofs`freelonode+0x1fe\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              unix`mutex_init+0x42\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`vn_vfslocks_rele+0xa6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`vn_rele+0x39\n              genunix`lookuppnvp+0x39f\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`fop_inactive+0x90\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`vn_vfsunlock+0x35\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`fop_lookup+0x135\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`vn_setops+0x17\n              lofs`makelonode+0x1c4\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`vn_vfslocks_getlock\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`dnlc_lookup+0x11\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              lofs`lsave+0x17\n              lofs`makelonode+0x1df\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              unix`rw_enter+0x17\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`kmem_cache_alloc+0x79\n              genunix`kmem_alloc+0x4b\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`dnlc_lookup+0x22\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              lofs`table_lock_enter+0x38\n              lofs`makelonode+0x36\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`vn_reinit+0x8\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`rwst_enter_common+0x1c8\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              lofs`lsave+0x32\n              lofs`makelonode+0x1df\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              lofs`freelonode+0x115\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              lofs`table_lock_enter+0x50\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`fop_lookup+0x77\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`cv_init+0x19\n              genunix`rwst_init+0x47\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`kmem_cache_free+0xdb\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`dnlc_lookup+0x59\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              ufs`ufs_iaccess+0x2f\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`vn_invalid\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              unix`membar_consumer\n              lofs`makelonode+0x36\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`vn_setpath+0x1c7\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`kmem_cache_free+0xfa\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`dnlc_lookup+0x16c\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`vfs_getops\n              lofs`lo_lookup+0x1e6\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`kmem_alloc\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`ufalloc_file+0xd3\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`set_errno+0x34\n              genunix`copen+0x4fa\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              lofs`makelonode+0x47\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`dnlc_lookup+0x17f\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`kmem_alloc+0xf\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`kmem_cache_free+0x1b\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`vn_vfslocks_getlock+0x7d\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`vn_free+0xa3\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`kmem_cache_alloc+0xf3\n              genunix`kmem_zalloc+0x47\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`vn_vfslocks_getlock+0x86\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`vn_vfslocks_getlock+0x86\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              lofs`makelonode+0x168\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`kmem_cache_free+0x2b\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`kmem_cache_free+0x2b\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`rwst_enter_common+0x341\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`kmem_alloc+0x32\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`kmem_cache_alloc+0x8\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`vn_vfslocks_rele+0x5c\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`rwst_destroy+0x2e\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`kmem_cache_free+0x3f\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              unix`mutex_enter\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`fop_inactive+0x41\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`rwst_enter_common+0x157\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`rwst_enter_common+0x157\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`kmem_cache_alloc+0x17\n              genunix`vn_alloc+0x1a\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`kmem_cache_alloc+0x17\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              lofs`lfind+0x3b\n              lofs`makelonode+0x47\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`vn_setpath+0x1b\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`kmem_alloc+0x4b\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`fop_lookup+0x1f0\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`fop_lookup+0xf1\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`kmem_cache_alloc+0x26\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              unix`mutex_init+0x17\n              genunix`rwst_init+0x38\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              lofs`freelonode+0x1b0\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              unix`mutex_exit\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`dnlc_lookup+0xd3\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`vn_vfsunlock+0x8\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              ufs`ufs_lookup+0x138\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`vn_setpath+0x3d\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               12\n\n              genunix`kmem_cache_free+0x70\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`traverse+0x77\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              unix`mutex_init+0x3d\n              genunix`rwst_init+0x38\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`fop_lookup+0x25\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`kmem_free+0x17\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              lofs`freelonode+0x1de\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`fop_lookup+0x30\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`vn_vfslocks_getlock+0xf2\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`fop_lookup+0x37\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              lofs`table_lock_enter+0x1b\n              lofs`makelonode+0x36\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              lofs`lo_lookup+0x250\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              lofs`table_lock_enter+0x26\n              lofs`makelonode+0x36\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`fop_lookup+0x47\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`vn_mountedvfs\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`fop_lookup+0x55\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`dnlc_lookup+0x26\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`vn_setops+0x3d\n              lofs`makelonode+0x1c4\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`kmem_cache_free+0xbd\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`dnlc_lookup+0x2e\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`cv_init\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              lofs`freelonode+0x17\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`rwst_init+0x17\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`cv_init+0x8\n              genunix`rwst_init+0x56\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              lofs`lo_lookup+0x283\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`rwst_enter_common+0x1e4\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`rwst_init+0x28\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              lofs`table_lock_enter+0x5c\n              lofs`makelonode+0x36\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`vn_setpath+0xb0\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              lofs`lsave+0x52\n              lofs`makelonode+0x1df\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`rwst_exit+0x23\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              ufs`ufs_iaccess+0x24\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`vn_exists+0x36\n              lofs`makelonode+0x1e7\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`vn_vfslocks_rele+0x8\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`kmem_cache_free+0xe8\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`kmem_cache_free+0xe8\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              lofs`makelonode+0x2a\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              lofs`table_lock_enter+0x6d\n              lofs`makelonode+0x36\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`vn_recycle\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`post_syscall+0x221\n              unix`0xfffffffffb800c91\n               13\n\n              genunix`cv_destroy+0x8\n              genunix`rwst_destroy+0x25\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`vn_invalid+0x8\n              lofs`freelonode+0x115\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              ufs`ufs_iaccess+0x3c\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`audit_unfalloc+0xc\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              lofs`table_lock_enter+0x7d\n              lofs`makelonode+0x36\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              lofs`lsave+0x6f\n              lofs`makelonode+0x1df\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`fop_lookup+0x9f\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              lofs`makelfsnode\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              unix`sys_syscall+0x186\n               13\n\n              lofs`table_lock_enter+0x82\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`rwst_exit+0x44\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`rwst_init+0x56\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`traverse+0x8\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`kmem_cache_free+0x8\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`kmem_alloc+0xb\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              unix`strlen+0xb\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`vn_vfslocks_getlock+0x6e\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`vn_vfslocks_rele+0x38\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`traverse+0x18\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`vn_vfslocks_getlock+0x7d\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`kmem_cache_alloc+0xf3\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`vn_vfslocks_rele+0x46\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`traverse+0x26\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`unfalloc+0x16\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`kmem_alloc+0x26\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`fop_lookup+0xc7\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`kmem_cache_alloc+0xfc\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`kmem_cache_alloc\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`vn_vfsrlock+0x3b\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`vn_setpath+0x118\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              unix`mutex_init+0x8\n              genunix`rwst_init+0x38\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              ufs`ufs_lookup+0x1a\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`vn_vfslocks_rele+0x6b\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`vn_setpath+0x22\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              lofs`makelonode+0x98\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              lofs`lo_lookup+0xb\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              ufs`ufs_iaccess+0x9d\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              lofs`makelfsnode+0x5f\n              lofs`makelonode+0x192\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              unix`mutex_exit\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`vn_setpath+0x133\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`vn_rele+0x17\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`kmem_cache_alloc+0x37\n              genunix`kmem_alloc+0x4b\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`kmem_cache_alloc+0x3a\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`fd_find+0x6b\n              genunix`ufalloc_file+0x91\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`fop_lookup+0xb\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`audit_getstate+0x2c\n              genunix`lookuppnvp+0x82\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              lofs`freelonode+0x1bd\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               13\n\n              genunix`vn_setpath+0x140\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              unix`mutex_exit+0x12\n              genunix`kmem_alloc+0x4b\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              unix`mutex_exit+0x12\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`dnlc_lookup+0xe5\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`vfs_matchops+0x27\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`cv_broadcast+0x8\n              genunix`rwst_exit+0x8f\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`fop_lookup+0x1a\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`fop_lookup+0x21\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`fop_lookup+0x21\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`vn_setpath+0x155\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`vn_vfslocks_rele+0xa6\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`fop_inactive+0x8b\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`fop_lookup+0x2c\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              lofs`makelonode+0x1d2\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`vn_recycle+0xa2\n              genunix`vn_reinit+0x7b\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              lofs`table_lock_enter+0x13\n              lofs`makelonode+0x36\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`vn_setpath+0x163\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`kmem_cache_alloc+0x66\n              genunix`kmem_alloc+0x4b\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`fop_lookup+0x3b\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`fop_lookup+0x43\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`fd_find+0xa6\n              genunix`ufalloc_file+0x91\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`vn_vfslocks_getlock+0x8\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`vn_vfslocks_getlock+0x8\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`fop_lookup+0x4b\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`vn_recycle+0xbd\n              genunix`vn_reinit+0x7b\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              lofs`table_lock_enter+0x2e\n              lofs`makelonode+0x36\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              lofs`freelonode\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`rwst_init\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`kmem_cache_free+0xb0\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`kmem_cache_alloc+0x84\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`vn_exists+0x8\n              lofs`makelonode+0x1e7\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              ufs`ufs_lookup+0x9b\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              unix`mutex_destroy+0x84\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              lofs`lsave+0x45\n              lofs`makelonode+0x1df\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`vn_reinit+0x29\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`vn_setpath+0xb5\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`dnlc_lookup+0x56\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              lofs`makelonode+0x2e\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              ufs`ufs_iaccess+0x130\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`syscall_mstate+0x130\n              unix`sys_syscall+0x1a1\n               14\n\n              genunix`rwst_init+0x42\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`vn_vfslocks_rele+0x17\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`vn_vfslocks_rele+0x17\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`rwst_init+0x47\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`rwst_enter_common+0xb\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              lofs`lo_lookup+0x1ae\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`traverse\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`fop_inactive\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              unix`0xfffffffffb800c91\n               14\n\n              genunix`lookupnameatcred+0x1\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              unix`bcopy+0x395\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`vfs_getops+0x8\n              genunix`vfs_matchops+0x1c\n              lofs`lo_lookup+0x1e6\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`fop_inactive+0x8\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`kmem_cache_free+0x8\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`rwst_init+0x5b\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`fop_lookup+0xb0\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`kmem_cache_free+0x17\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`vn_vfsrlock+0x18\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`secpolicy_vnode_access2+0x1a\n              ufs`ufs_iaccess+0x128\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`crgetmapped\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`kmem_cache_alloc+0xf3\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              ufs`ufs_lookup+0xf4\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`fop_inactive+0x26\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`rwst_enter_common+0x38\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`kmem_alloc+0x2a\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`kmem_cache_alloc+0xfc\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              lofs`makelonode+0x6d\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`post_syscall+0x5e\n              unix`0xfffffffffb800c91\n               14\n\n              genunix`secpolicy_vnode_access2+0x22f\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`vfs_getops+0x32\n              genunix`vfs_matchops+0x1c\n              lofs`lo_lookup+0x1e6\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`kmem_cache_free+0x3a\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`lookupnameat+0x30\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              unix`mutex_enter\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              unix`mutex_enter\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              unix`mutex_enter\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              unix`mutex_enter\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`fop_lookup+0xed\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              ufs`ufs_iaccess+0x8e\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`vfs_matchops\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              unix`mutex_destroy+0x8\n              genunix`rwst_destroy+0x1c\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`vn_rele+0xc\n              ufs`ufs_lookup+0x36d\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`vsd_free\n              genunix`vn_reinit+0x7b\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              unix`mutex_exit\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              unix`mutex_exit\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              unix`mutex_exit\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              unix`mutex_exit\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`kmem_cache_alloc+0x3a\n              genunix`vn_alloc+0x1a\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              genunix`fop_lookup+0x10c\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              ufs`ufs_lookup+0x3c\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               14\n\n              unix`mutex_exit+0x12\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              unix`mutex_exit+0x12\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              lofs`makelfsnode+0x77\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              lofs`makelfsnode+0x78\n              lofs`makelonode+0x192\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`dnlc_lookup+0xeb\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`vsd_free+0x1b\n              genunix`vn_recycle+0xb5\n              genunix`vn_reinit+0x7b\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`vn_vfslocks_rele+0x9e\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              lofs`lo_root\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              lofs`makelonode+0xc2\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              unix`mutex_init+0x42\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`kmem_cache_alloc+0x66\n              genunix`vn_alloc+0x1a\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`kmem_cache_alloc+0x66\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`kmem_free+0x2a\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              lofs`table_lock_enter+0x22\n              lofs`makelonode+0x36\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              ufs`ufs_iaccess+0xe5\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`vn_setops+0x26\n              lofs`makelonode+0x1c4\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`lookupnameatcred+0xa8\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`rwst_enter_common+0x1b8\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`kmem_cache_alloc+0x84\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`lookuppnvp+0x235\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`rwst_enter_common+0x2c7\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              ufs`ufs_lookup+0x88\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`kmem_cache_alloc+0x89\n              genunix`kmem_alloc+0x4b\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`fop_lookup+0x5a\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              unix`mutex_destroy+0x6b\n              genunix`rwst_destroy+0x1c\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`kmem_cache_alloc+0x92\n              genunix`kmem_alloc+0x4b\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`kmem_cache_alloc+0x92\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`kmem_free+0x57\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`disp_lock_exit+0x48\n              unix`0xfffffffffb800c91\n               15\n\n              genunix`kmem_alloc+0xc8\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`syscall_mstate+0xc\n              unix`sys_syscall+0x1a1\n               15\n\n              genunix`syscall_mstate+0x10f\n              unix`sys_syscall+0x1a1\n               15\n\n              genunix`vn_setops+0x50\n              lofs`makelonode+0x1c4\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`crgetuid\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`dnlc_lookup+0x43\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`post_syscall+0x205\n              unix`0xfffffffffb800c91\n               15\n\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`vn_rele+0x87\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`cv_init+0x19\n              genunix`rwst_init+0x56\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`crgetuid+0x10\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              lofs`makelonode+0x22\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`cv_destroy\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`rwst_exit+0x35\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`cv_destroy+0x8\n              genunix`rwst_destroy+0x2e\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`vn_recycle+0x8\n              genunix`vn_reinit+0x7b\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`syscall_mstate+0x139\n              unix`0xfffffffffb800ca0\n               15\n\n              lofs`table_lock_enter+0x7d\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              lofs`lo_lookup+0xaf\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`traverse\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              unix`lock_clear_splx+0x3\n              genunix`post_syscall+0x318\n              unix`0xfffffffffb800c91\n               15\n\n              lofs`lo_lookup+0xb7\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              lofs`lfind+0xb\n              lofs`makelonode+0x47\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              lofs`makelonode+0x5e\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`rwst_destroy+0x25\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`vn_alloc+0x6\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`memcmp+0x37\n              unix`bcmp+0x9\n              genunix`dnlc_lookup+0x10d\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`pn_getcomponent+0x8\n              genunix`lookuppnvp+0x16d\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`kmem_cache_alloc+0x8\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`kmem_cache_alloc+0x8\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              lofs`makelonode+0x79\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              ufs`ufs_lookup+0xb\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              unix`mutex_enter\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`syscall_mstate+0x183\n              unix`sys_syscall+0x1a1\n               15\n\n              lofs`makelonode+0x186\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`rwst_exit+0x86\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`kmem_cache_alloc+0x1b\n              genunix`kmem_alloc+0x4b\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`crgetmapped+0x2e\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              unix`copystr+0x54\n              genunix`pn_get_buf+0x43\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`kmem_cache_alloc+0x26\n              genunix`kmem_alloc+0x4b\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`vn_rele+0x8\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`traverse+0x5b\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`vn_vfsunlock\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              unix`mutex_exit\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              unix`mutex_exit\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`kmem_cache_free+0x68\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`kmem_cache_free+0x68\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`vn_setpath+0x39\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`fsop_root+0xc\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              unix`mutex_exit+0xc\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               15\n\n              genunix`cv_broadcast\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`vsd_free+0x10\n              genunix`vn_recycle+0xb5\n              genunix`vn_reinit+0x7b\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`vn_rele+0x24\n              genunix`lookuppnvp+0x39f\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              lofs`lfind+0x67\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`kmem_cache_alloc+0x4e\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              lofs`table_lock_enter\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              lofs`lo_lookup+0x34\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`dnlc_lookup+0x100\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              lofs`lo_lookup+0x48\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              lofs`makelonode+0x1df\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`post_syscall+0x1d0\n              unix`0xfffffffffb800c91\n               16\n\n              unix`bcopy+0x330\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`vn_vfslocks_getlock\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              unix`bcopy+0x238\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`vn_mountedvfs+0x8\n              genunix`lookuppnvp+0x217\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`pn_get_buf+0x4b\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              unix`splr+0xc\n              genunix`thread_lock+0x24\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n               16\n\n              genunix`kmem_cache_alloc+0x8d\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`kmem_cache_alloc+0x92\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`fop_lookup+0x64\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`vn_setpath+0x97\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`kmem_alloc+0xc8\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`syscall_mstate+0xc\n              unix`0xfffffffffb800ca0\n               16\n\n              genunix`vn_setops+0x5f\n              lofs`makelonode+0x1c4\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              unix`bcmp\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`vn_vfslocks_getlock+0x41\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`cv_broadcast+0x72\n              genunix`rwst_exit+0x8f\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`fop_lookup+0x82\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              ufs`ufs_iaccess+0x128\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              lofs`lo_lookup+0x198\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              lofs`lsave+0x61\n              lofs`makelonode+0x1df\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`vn_setpath+0x1c2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              ufs`ufs_iaccess+0x137\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              unix`sys_syscall+0x17d\n               16\n\n              genunix`rwst_init+0x51\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`lookuppnvp+0x185\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`vn_vfslocks_getlock+0x66\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`kmem_cache_free+0x8\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`kmem_cache_alloc+0xe4\n              genunix`kmem_alloc+0x4b\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`memcmp+0x17\n              unix`bcmp+0x9\n              genunix`dnlc_lookup+0x10d\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`kmem_cache_alloc+0xfc\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              unix`atomic_add_32\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`kmem_cache_alloc+0x8\n              genunix`vn_alloc+0x1a\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`kmem_cache_alloc+0x8\n              genunix`kmem_alloc+0x4b\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              unix`mutex_enter\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`vfs_getops+0x49\n              genunix`vfs_matchops+0x1c\n              lofs`lo_lookup+0x1e6\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`lookuppnvp+0xcb\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              lofs`lsave+0xc0\n              lofs`makelonode+0x1df\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              unix`mutex_destroy\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`kmem_cache_alloc+0x22\n              genunix`kmem_alloc+0x4b\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`kmem_cache_alloc+0x26\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              ufs`ufs_iaccess+0xa2\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`fop_lookup+0x107\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              genunix`vsd_free+0x8\n              genunix`vn_recycle+0xb5\n              genunix`vn_reinit+0x7b\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              lofs`lfind+0x5f\n              lofs`makelonode+0x47\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               16\n\n              unix`mutex_exit+0x12\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`fop_lookup+0x16\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`vn_setpath+0x14d\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`kmem_cache_alloc+0x4e\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              lofs`makelonode+0x1bf\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`kmem_free+0x17\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              lofs`lo_lookup+0x138\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`dnlc_lookup\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`vn_vfslocks_rele+0xc6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`lookuppnvp+0x327\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`fop_lookup+0x47\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`fop_inactive+0xab\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`lookuppnvp+0x32e\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              lofs`lo_lookup+0x60\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`vn_exists\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`rwst_init+0x8\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`rwst_enter_common+0x1d8\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`vn_exists+0x1d\n              lofs`makelonode+0x1e7\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              lofs`makelonode+0x17\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`dnlc_lookup+0x50\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`vn_vfslocks_getlock+0x41\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`cv_init+0x22\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              unix`membar_consumer\n              genunix`vfs_matchops+0x1c\n              lofs`lo_lookup+0x1e6\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              lofs`makelonode+0x31\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`vn_reinit+0x47\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`syscall_mstate+0x41\n              unix`sys_syscall+0x1a1\n               17\n\n              lofs`table_lock_enter+0x82\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`vn_recycle+0x17\n              genunix`vn_reinit+0x7b\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`memcmp+0x8\n              unix`bcmp+0x9\n              genunix`dnlc_lookup+0x10d\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`secpolicy_vnode_access2+0x108\n              ufs`ufs_iaccess+0x128\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`vn_vfslocks_rele+0x29\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`rwst_exit+0x4c\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`rwst_destroy+0x8\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`lookuppnvp+0x1ac\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`fop_lookup+0xcd\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              lofs`lo_lookup+0x2e0\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              unix`mutex_enter\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              unix`mutex_enter\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`traverse+0x43\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`fop_lookup+0xe9\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`crgetmapped+0x2a\n              genunix`fop_lookup+0x1dc\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`vn_recycle+0x65\n              genunix`vn_reinit+0x7b\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`kmem_cache_alloc+0x26\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              lofs`lsave+0xca\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              lofs`makelonode+0x9f\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`rwst_tryenter+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              unix`mutex_exit\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`kmem_cache_alloc+0x33\n              genunix`vn_alloc+0x1a\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`vfs_matchops+0x17\n              lofs`lo_lookup+0x1e6\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              genunix`vfs_matchops+0x1c\n              lofs`lo_lookup+0x1e6\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              unix`mutex_exit+0xc\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              lofs`makelfsnode+0x6e\n              lofs`makelonode+0x192\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               17\n\n              unix`mutex_exit+0x12\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`vfs_matchops+0x23\n              lofs`lo_lookup+0x1e6\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`vsd_free+0x1f\n              genunix`vn_recycle+0xb5\n              genunix`vn_reinit+0x7b\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`lookuppnvp+0x205\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              unix`bcopy+0x1f\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`fop_lookup+0x135\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`fop_lookup+0x3f\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              lofs`lo_lookup+0x50\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              ufs`ufs_lookup+0x70\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`kmem_cache_alloc+0x89\n              genunix`vn_alloc+0x1a\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`dnlc_lookup+0x2a\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              lofs`lo_lookup+0x26b\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`cv_init+0x1\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`vn_mountedvfs+0x11\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`dnlc_lookup+0x32\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`fop_lookup+0x64\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`cv_init+0x8\n              genunix`rwst_init+0x47\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              lofs`lo_lookup+0x79\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              ufs`ufs_iaccess+0x10c\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`lookuppnvp+0x15e\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`kmem_alloc+0xdf\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`post_syscall+0x211\n              unix`0xfffffffffb800c91\n               18\n\n              genunix`fop_lookup+0x82\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              unix`bcmp+0x9\n              genunix`dnlc_lookup+0x10d\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`fop_lookup+0x8e\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`rwst_enter_common\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              unix`do_splx\n              genunix`post_syscall+0x318\n              unix`0xfffffffffb800c91\n               18\n\n              unix`strlen\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`dnlc_lookup+0x7d\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`fop_lookup+0xb0\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`fop_lookup+0xb6\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`rwst_enter_common+0x29\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`lookupnameat+0xc\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`vn_vfslocks_rele+0x46\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`rwst_destroy+0x1c\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`pn_getcomponent\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`vn_vfslocks_getlock+0x90\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`vn_vfsrlock+0x3b\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`kmem_alloc+0x3b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`rwst_destroy+0x32\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`rwst_tryenter+0x9\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`crgetmapped+0x2a\n              genunix`fop_lookup+0x1dc\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              lofs`makelonode+0x192\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`vn_alloc+0x35\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              genunix`audit_getstate+0x2c\n              genunix`copen+0x59\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              unix`mutex_exit+0xc\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              lofs`makelonode+0x1af\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               18\n\n              unix`mutex_exit+0x12\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              genunix`vn_rele+0x24\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              genunix`dnlc_lookup+0x9\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              genunix`fop_lookup+0x3f\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              genunix`fop_lookup+0x43\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              genunix`dnlc_lookup+0x15\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              lofs`lo_lookup+0x25d\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              genunix`vn_vfslocks_rele+0xce\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              unix`rw_enter+0x22\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              genunix`fop_lookup+0x55\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              lofs`makelonode\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              genunix`vn_mountedvfs+0x11\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              genunix`vn_vfslocks_rele+0x105\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              genunix`dnlc_lookup+0x160\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              unix`membar_consumer\n              lofs`makelonode+0x1c4\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              genunix`audit_unfalloc+0x1\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              genunix`fop_lookup+0x9f\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              genunix`audit_unfalloc+0x24\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              genunix`vn_reinit+0x67\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              lofs`lo_lookup+0x1d4\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              genunix`fop_lookup+0x1c8\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              genunix`crgetmapped+0x8\n              genunix`fop_lookup+0x1dc\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              genunix`memcmp+0x30\n              unix`bcmp+0x9\n              genunix`dnlc_lookup+0x10d\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              unix`clear_int_flag\n              genunix`thread_lock+0x24\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n               19\n\n              genunix`crgetmapped+0x15\n              genunix`fop_lookup+0x1dc\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              ufs`ufs_iaccess+0x7f\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              unix`mutex_enter\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              unix`mutex_init\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              genunix`rwst_tryenter+0x9\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              unix`i_ddi_splhigh+0x5\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n               19\n\n              genunix`kmem_cache_alloc+0x26\n              genunix`vn_alloc+0x1a\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              unix`tsc_gethrtimeunscaled+0xc\n              genunix`gethrtime_unscaled+0xa\n              genunix`syscall_mstate+0x5d\n              unix`sys_syscall+0x1a1\n               19\n\n              unix`copystr+0x60\n              genunix`pn_get_buf+0x43\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              unix`mutex_exit\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              ufs`ufs_lookup+0x38\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              lofs`lo_lookup+0x1a\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              genunix`traverse+0x6f\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               19\n\n              genunix`kmem_free\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              genunix`traverse+0x7c\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              genunix`vn_setpath+0x4e\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              genunix`vn_setops\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              genunix`fop_lookup+0x25\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              lofs`lo_lookup+0x3c\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              genunix`vn_vfslocks_rele+0xb3\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              genunix`vn_vfslocks_getlock\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              genunix`traverse+0xa8\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              genunix`vn_recycle+0xbe\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              genunix`vn_setpath+0x190\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              lofs`table_lock_enter+0x41\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              unix`mutex_destroy+0x7f\n              genunix`rwst_destroy+0x1c\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              ufs`ufs_iaccess+0x11c\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              genunix`kmem_alloc+0xdf\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              genunix`vn_setpath+0x1b0\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              genunix`dnlc_lookup+0x159\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              genunix`kmem_cache_free+0xf1\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              genunix`dnlc_lookup+0x65\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              genunix`cv_destroy+0xd\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              genunix`vn_vfslocks_rele+0x38\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              genunix`dnlc_lookup+0x198\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              genunix`crgetmapped+0x8\n              genunix`fop_lookup+0x1dc\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              genunix`kmem_alloc+0x2a\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              genunix`crgetmapped+0x15\n              genunix`fop_lookup+0x1dc\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              genunix`fop_lookup+0x1d7\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              genunix`rwst_tryenter\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              lofs`makelonode+0x92\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              unix`mutex_exit\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              genunix`dnlc_lookup+0xdf\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               20\n\n              ufs`ufs_lookup+0x40\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              lofs`lo_lookup+0x29\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              genunix`kmem_free+0xb\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              genunix`fop_lookup+0x126\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              genunix`kmem_free+0x17\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              genunix`fop_lookup+0x13e\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              lofs`makelonode+0x1e7\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              genunix`vn_recycle+0xb9\n              genunix`vn_reinit+0x7b\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              ufs`ufs_lookup+0x80\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              genunix`vn_free+0x32\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              ufs`ufs_lookup+0x85\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              genunix`vn_setops+0x4a\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              genunix`crgetuid+0x8\n              ufs`ufs_iaccess+0xe5\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              ufs`ufs_iaccess+0x33\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              genunix`dnlc_lookup+0x79\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              unix`strlen+0xb\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              genunix`vn_vfslocks_getlock+0x6e\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              genunix`rwst_destroy\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              unix`strlen+0x13\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              unix`strlen+0x13\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              genunix`crgetmapped\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              lofs`makelfsnode+0x26\n              lofs`makelonode+0x192\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              unix`bcopy+0x3b8\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              genunix`vfs_getops+0x28\n              genunix`vfs_matchops+0x1c\n              lofs`lo_lookup+0x1e6\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              genunix`dnlc_lookup+0x9d\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              genunix`vn_recycle+0x41\n              genunix`vn_reinit+0x7b\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              genunix`rwst_enter_common+0x44\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              genunix`secpolicy_vnode_access2+0x38\n              ufs`ufs_iaccess+0x128\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              genunix`kmem_cache_free+0x3a\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              lofs`lo_lookup+0x1ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              genunix`rwst_tryenter\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              unix`mutex_enter\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              genunix`fop_lookup+0x1f8\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              unix`mutex_destroy+0x17\n              genunix`rwst_destroy+0x1c\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               21\n\n              genunix`syscall_mstate+0x1b2\n              unix`sys_syscall+0x1a1\n               22\n\n              unix`mutex_exit+0x12\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               22\n\n              lofs`lo_lookup+0x40\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               22\n\n              genunix`fop_lookup+0x30\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               22\n\n              genunix`lookuppnvp+0x31a\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               22\n\n              genunix`disp_lock_exit+0x1b\n              genunix`post_syscall+0x318\n              unix`0xfffffffffb800c91\n               22\n\n              genunix`dnlc_lookup+0x11\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               22\n\n              genunix`vn_setpath+0x83\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               22\n\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               22\n\n              genunix`pn_getcomponent+0x90\n              genunix`lookuppnvp+0x16d\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               22\n\n              ufs`ufs_iaccess+0x8\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               22\n\n              lofs`lsave+0x3a\n              lofs`makelonode+0x1df\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               22\n\n              genunix`rwst_init+0x38\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               22\n\n              genunix`secpolicy_vnode_access2+0x1\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               22\n\n              genunix`kmem_cache_alloc+0xfc\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               22\n\n              genunix`dnlc_lookup+0xa0\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               22\n\n              ufs`ufs_lookup\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               22\n\n              genunix`fop_lookup+0x1d7\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               22\n\n              genunix`dnlc_lookup+0xa9\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               22\n\n              ufs`ufs_iaccess+0x7a\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               22\n\n              unix`mutex_enter\n              lofs`makelonode+0x36\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               22\n\n              unix`mutex_enter\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               22\n\n              genunix`rwst_enter_common+0x15f\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               22\n\n              ufs`ufs_lookup+0x29\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               22\n\n              unix`mutex_exit\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               22\n\n              unix`mutex_exit+0x12\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               23\n\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               23\n\n              unix`mutex_exit+0x19\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               23\n\n              genunix`lookuppnvp+0x308\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               23\n\n              genunix`dnlc_lookup+0x10d\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               23\n\n              genunix`dnlc_lookup+0x11c\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               23\n\n              genunix`pn_getcomponent+0x89\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               23\n\n              genunix`lookuppnvp+0x13e\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               23\n\n              genunix`pn_getcomponent+0xab\n              genunix`lookuppnvp+0x16d\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               23\n\n              genunix`rwst_enter_common\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               23\n\n              genunix`cv_destroy+0x1\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               23\n\n              lofs`lo_lookup+0x1bf\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               23\n\n              unix`rw_exit+0x3\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               23\n\n              genunix`secpolicy_vnode_access2+0x29\n              ufs`ufs_iaccess+0x128\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               23\n\n              genunix`kmem_cache_alloc\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               23\n\n              genunix`dnlc_lookup+0x1ad\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               23\n\n              genunix`kmem_cache_alloc+0x17\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               23\n\n              genunix`pn_getcomponent+0x18\n              genunix`lookuppnvp+0x16d\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               23\n\n              genunix`fop_lookup+0x1eb\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               23\n\n              genunix`crgetmapped+0x2e\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               23\n\n              genunix`fsop_root\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               23\n\n              unix`mutex_exit\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               23\n\n              unix`mutex_exit+0x9\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               23\n\n              genunix`falloc+0x1\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               24\n\n              genunix`vn_alloc+0x42\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               24\n\n              lofs`lo_lookup+0x126\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               24\n\n              genunix`traverse+0x7f\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               24\n\n              unix`bcopy+0x1b\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               24\n\n              genunix`vn_vfsunlock+0x35\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               24\n\n              ufs`ufs_iaccess+0xd8\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               24\n\n              ufs`ufs_iaccess+0x1\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               24\n\n              genunix`fop_lookup+0x73\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               24\n\n              ufs`ufs_lookup+0xb7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               24\n\n              lofs`lo_lookup+0x9d\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               24\n\n              genunix`pn_getcomponent+0xc1\n              genunix`lookuppnvp+0x16d\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               24\n\n              genunix`syscall_mstate+0x139\n              unix`sys_syscall+0x1a1\n               24\n\n              genunix`dnlc_lookup+0x175\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               24\n\n              genunix`fop_lookup+0xc2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               24\n\n              genunix`secpolicy_vnode_access2+0x226\n              ufs`ufs_iaccess+0x128\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               24\n\n              genunix`fop_lookup+0xcb\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               24\n\n              genunix`dnlc_lookup+0x1a8\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               24\n\n              unix`copystr+0x45\n              genunix`pn_get_buf+0x43\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               24\n\n              zfs`zfs_lookup+0x88\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               24\n\n              genunix`fop_lookup+0xb\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               24\n\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               24\n\n              genunix`dnlc_lookup+0xeb\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               25\n\n              genunix`fop_lookup+0x1d\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               25\n\n              genunix`fop_lookup+0x2c\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               25\n\n              genunix`secpolicy_vnode_access2+0xa0\n              ufs`ufs_iaccess+0x128\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               25\n\n              genunix`fop_lookup+0x5a\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               25\n\n              genunix`cv_init+0x22\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               25\n\n              lofs`lo_lookup+0x1a4\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               25\n\n              genunix`post_syscall+0x22d\n              unix`0xfffffffffb800c91\n               25\n\n              genunix`lookupnameat\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               25\n\n              genunix`unfalloc+0x1\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               25\n\n              unix`strlen+0x16\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               25\n\n              ufs`ufs_lookup+0xe9\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               25\n\n              unix`mutex_enter\n              genunix`vn_alloc+0x1a\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               25\n\n              genunix`lookuppnvp+0x1c5\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               25\n\n              genunix`fop_lookup+0x1eb\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               25\n\n              genunix`vn_setpath+0x12b\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               25\n\n              unix`mutex_exit\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               25\n\n              unix`mutex_exit\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               25\n\n              genunix`vn_setpath+0x137\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               25\n\n              genunix`audit_getstate+0x2c\n              genunix`setf+0x3f\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               25\n\n              lofs`table_lock_enter\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               26\n\n              genunix`fop_lookup+0x3b\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               26\n\n              genunix`fop_lookup+0x13e\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               26\n\n              genunix`kmem_free+0x3a\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               26\n\n              genunix`cv_init\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               26\n\n              genunix`fop_inactive+0xc2\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               26\n\n              genunix`rwst_exit+0x8\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               26\n\n              lofs`lo_lookup+0x8f\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               26\n\n              unix`prunstop+0x1b\n              genunix`post_syscall+0x2d0\n              unix`0xfffffffffb800c91\n               26\n\n              unix`bcmp+0xf\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               26\n\n              lofs`lo_lookup+0xa1\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               26\n\n              genunix`cv_destroy+0xd\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               26\n\n              ufs`ufs_iaccess+0x59\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               26\n\n              genunix`kmem_cache_alloc\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               26\n\n              lofs`lo_lookup+0x1e6\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               26\n\n              genunix`dnlc_lookup+0xbe\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               26\n\n              unix`mutex_exit\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               26\n\n              unix`mutex_exit\n              genunix`vn_alloc+0x1a\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               26\n\n              lofs`lo_lookup+0x118\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               26\n\n              genunix`dnlc_lookup+0x149\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               27\n\n              genunix`lookuppnvp+0x16d\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               27\n\n              ufs`ufs_iaccess+0x141\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               27\n\n              unix`bcopy+0x3b4\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               27\n\n              genunix`vn_reinit+0x7b\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               27\n\n              unix`rw_exit+0x24\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               27\n\n              genunix`thread_lock+0x1\n              unix`0xfffffffffb800c91\n               27\n\n              unix`mutex_exit+0xc\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               27\n\n              genunix`lookuppnvp+0x1ed\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               27\n\n              unix`strlen\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               28\n\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               28\n\n              unix`strlen+0xb\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               28\n\n              genunix`vn_setpath+0xc\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               28\n\n              genunix`kmem_cache_alloc+0x10\n              genunix`kmem_alloc+0x4b\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               28\n\n              genunix`fd_find+0x58\n              genunix`ufalloc_file+0x91\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               28\n\n              genunix`fop_lookup+0x1\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               28\n\n              unix`mutex_exit+0xc\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               28\n\n              unix`mutex_exit+0xc\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               28\n\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               29\n\n              genunix`fop_lookup+0x37\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               29\n\n              unix`bcopy+0x234\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               29\n\n              genunix`vn_recycle+0xb5\n              genunix`vn_reinit+0x7b\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               29\n\n              genunix`fop_lookup+0x5e\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               29\n\n              genunix`rwst_enter_common+0x44\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               29\n\n              unix`tsc_gethrtimeunscaled+0x1\n              genunix`syscall_mstate+0x5d\n              unix`sys_syscall+0x1a1\n               29\n\n              genunix`syscall_mstate+0x1a1\n              unix`sys_syscall+0x1a1\n               29\n\n              unix`mutex_exit+0xc\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               29\n\n              lofs`lo_lookup+0x133\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               30\n\n              unix`bcopy+0x32c\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               30\n\n              genunix`fop_inactive+0xc2\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               30\n\n              genunix`clear_stale_fd+0x46\n              genunix`post_syscall+0x1fe\n              unix`0xfffffffffb800c91\n               30\n\n              genunix`vn_vfslocks_rele\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               30\n\n              genunix`syscall_mstate+0x14d\n              unix`0xfffffffffb800ca0\n               30\n\n              unix`rw_exit\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               30\n\n              genunix`rwst_enter_common+0x40\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               30\n\n              unix`mutex_enter\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               30\n\n              unix`mutex_exit\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               30\n\n              genunix`post_syscall+0x29a\n              unix`0xfffffffffb800c91\n               30\n\n              lofs`lo_lookup+0x38\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               31\n\n              unix`rw_enter+0x9\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               31\n\n              unix`splr\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n               31\n\n              genunix`fop_lookup+0xc2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               31\n\n              genunix`memcmp+0x23\n              unix`bcmp+0x9\n              genunix`dnlc_lookup+0x10d\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               31\n\n              unix`mutex_init\n              genunix`vn_vfslocks_getlock+0xb0\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               31\n\n              lofs`lo_lookup\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               31\n\n              genunix`fop_lookup\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               31\n\n              unix`bcopy+0x17\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               32\n\n              genunix`pn_getcomponent+0x73\n              genunix`lookuppnvp+0x16d\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               32\n\n              genunix`pn_getcomponent+0x81\n              genunix`lookuppnvp+0x16d\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               32\n\n              unix`bcopy+0x38c\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               32\n\n              genunix`crgetmapped\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               32\n\n              ufs`ufs_lookup+0xfa\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               32\n\n              genunix`dnlc_lookup+0xd0\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               32\n\n              ufs`ufs_lookup+0x44\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               33\n\n              genunix`post_syscall+0x2b9\n              unix`0xfffffffffb800c91\n               33\n\n              genunix`dnlc_lookup+0x75\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               33\n\n              ufs`ufs_iaccess+0x89\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               33\n\n              genunix`fsop_root+0x1\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               33\n\n              genunix`kmem_free\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               34\n\n              genunix`fop_lookup+0x113\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               34\n\n              lofs`lo_root+0x1f\n              genunix`fsop_root+0x2d\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               34\n\n              genunix`fop_lookup+0x5e\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               34\n\n              lofs`table_lock_enter+0x41\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               34\n\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               34\n\n              genunix`dnlc_lookup+0x99\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               34\n\n              unix`clear_int_flag+0x2\n              genunix`disp_lock_exit+0x47\n              genunix`post_syscall+0x318\n              unix`0xfffffffffb800c91\n               34\n\n              lofs`lfind+0x40\n              lofs`makelonode+0x47\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               34\n\n              genunix`lookuppnvp+0x1db\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               34\n\n              genunix`fop_lookup\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               34\n\n              lofs`lo_lookup+0x58\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               35\n\n              genunix`memcmp\n              genunix`dnlc_lookup+0x10d\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               35\n\n              unix`strlen+0xe\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               35\n\n              unix`mutex_enter\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               35\n\n              genunix`fop_lookup+0x1ff\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               35\n\n              unix`mutex_exit+0xc\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               35\n\n              genunix`vn_setpath+0x6b\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               36\n\n              genunix`vn_setpath+0x9e\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               36\n\n              unix`membar_consumer+0x3\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               36\n\n              genunix`secpolicy_vnode_access2\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               36\n\n              unix`copystr+0x39\n              genunix`pn_get_buf+0x43\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               36\n\n              unix`mutex_exit\n              genunix`kmem_alloc+0x4b\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               36\n\n              genunix`vn_mountedvfs\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               37\n\n              unix`mutex_enter+0x9\n              genunix`kmem_alloc+0x4b\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               37\n\n              genunix`vn_reinit+0x7c\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               38\n\n              unix`mutex_exit+0xc\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               38\n\n              unix`mutex_exit+0xc\n              genunix`kmem_zalloc+0x47\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               38\n\n              genunix`lookupnameat+0x1\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               39\n\n              unix`mutex_exit\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               39\n\n              genunix`pn_getcomponent+0x9e\n              genunix`lookuppnvp+0x16d\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               40\n\n              unix`mutex_exit+0xc\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               40\n\n              unix`bcopy\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               41\n\n              unix`mutex_exit+0x12\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               41\n\n              unix`mutex_exit+0x12\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               41\n\n              genunix`dnlc_lookup\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               41\n\n              genunix`syscall_mstate+0x1\n               41\n\n              unix`bcopy+0x2cd\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               41\n\n              unix`bcopy+0x2fc\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               41\n\n              unix`0xfffffffffb800c7c\n               42\n\n              genunix`dnlc_lookup+0x5f\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               42\n\n              genunix`cv_destroy\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               42\n\n              genunix`audit_getstate+0x1\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               42\n\n              unix`copystr+0x52\n              genunix`pn_get_buf+0x43\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               42\n\n              unix`mutex_exit+0xc\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               42\n\n              unix`mutex_exit+0x12\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               43\n\n              genunix`syscall_mstate\n               43\n\n              genunix`vn_setpath+0xe7\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               43\n\n              unix`mutex_exit+0xc\n              genunix`kmem_free+0x4e\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               43\n\n              unix`mutex_exit+0xc\n              genunix`falloc+0x63\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               43\n\n              genunix`vn_setpath\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               44\n\n              unix`mutex_exit+0xc\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               44\n\n              genunix`dnlc_lookup+0x6b\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               45\n\n              genunix`kmem_alloc\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               45\n\n              genunix`fop_lookup+0x1dc\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               46\n\n              unix`mutex_enter\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               46\n\n              genunix`dnlc_lookup+0x53\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               47\n\n              genunix`vn_rele\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               47\n\n              unix`mutex_exit+0xc\n              genunix`unfalloc+0x61\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               47\n\n              unix`mutex_exit+0xc\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               47\n\n              unix`mutex_exit+0xc\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               47\n\n              unix`mutex_exit+0x12\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               48\n\n              unix`rw_enter+0x14\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               48\n\n              unix`mutex_exit+0x12\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               49\n\n              unix`mutex_exit+0xc\n              genunix`lookuppnvp+0x39f\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               49\n\n              unix`atomic_cas_64\n              lofs`makelonode+0x1c4\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               50\n\n              unix`mutex_exit+0xc\n              lofs`freelonode+0x1fe\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               50\n\n              ufs`ufs_iaccess\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               51\n\n              unix`strlen+0x8\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               51\n\n              unix`strlen+0xb\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               52\n\n              genunix`vn_setpath+0xee\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               52\n\n              unix`mutex_enter\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               52\n\n              unix`mutex_exit+0xc\n              genunix`traverse+0x9f\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               52\n\n              unix`mutex_exit+0x12\n              genunix`fsop_root+0x2d\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               53\n\n              genunix`vn_setpath+0x6f\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               53\n\n              unix`mutex_exit+0xc\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               53\n\n              unix`rw_enter\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               55\n\n              unix`mutex_exit+0xc\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               55\n\n              genunix`vn_setpath+0x126\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               56\n\n              genunix`kmem_free\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               57\n\n              unix`splr+0x1\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n               57\n\n              genunix`dnlc_lookup+0x62\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               57\n\n              lofs`table_lock_enter+0x41\n              lofs`makelonode+0x36\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               58\n\n              genunix`syscall_mstate+0x14d\n              unix`sys_syscall+0x10e\n               58\n\n              unix`mutex_exit+0x12\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               59\n\n              unix`mutex_exit+0x12\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               59\n\n              genunix`vsd_free+0xc\n              genunix`vn_recycle+0xb5\n              genunix`vn_reinit+0x7b\n              genunix`vn_alloc+0x3e\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               59\n\n              unix`bcopy+0x388\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               60\n\n              genunix`kmem_alloc+0x17\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               60\n\n              unix`bcopy+0x3b0\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               60\n\n              unix`mutex_exit+0xc\n              zfs`zfs_lookup+0xc2\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               61\n\n              unix`mutex_exit+0xc\n              ufs`ufs_lookup+0x36d\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               61\n\n              unix`membar_consumer+0x3\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               62\n\n              unix`mutex_enter\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               62\n\n              unix`mutex_exit+0x12\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               64\n\n              unix`strlen+0x10\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               64\n\n              unix`bcopy+0x328\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               66\n\n              genunix`dnlc_lookup+0x6e\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               66\n\n              lofs`lo_lookup+0x279\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               67\n\n              genunix`vn_setpath+0x76\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               69\n\n              genunix`vn_setops+0x2b\n              lofs`makelonode+0x1c4\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               69\n\n              genunix`vn_openat+0x7b\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               69\n\n              genunix`dnlc_lookup+0x69\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               69\n\n              unix`mutex_exit+0xc\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               69\n\n              unix`strlen+0xe\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               71\n\n              unix`mutex_exit+0xc\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               71\n\n              genunix`vfs_getops+0x20\n              genunix`vfs_matchops+0x1c\n              lofs`lo_lookup+0x1e6\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               72\n\n              unix`bcopy+0x2c8\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               72\n\n              unix`mutex_exit+0x12\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               74\n\n              unix`bcopy+0x230\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               74\n\n              unix`bcopy+0x2f8\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               74\n\n              unix`mutex_enter+0x10\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               75\n\n              genunix`vn_setpath+0x15a\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               76\n\n              unix`mutex_exit+0xc\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               77\n\n              unix`mutex_exit+0xc\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               77\n\n              genunix`vn_setpath+0x199\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               78\n\n              genunix`fop_lookup+0xf8\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               78\n\n              unix`mutex_enter+0x10\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               79\n\n              genunix`memcmp+0x20\n              unix`bcmp+0x9\n              genunix`dnlc_lookup+0x10d\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               80\n\n              unix`mutex_enter+0x10\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               82\n\n              genunix`memcmp+0x2c\n              unix`bcmp+0x9\n              genunix`dnlc_lookup+0x10d\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               87\n\n              unix`mutex_enter+0x10\n              genunix`lookuppnvp+0x39f\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               87\n\n              unix`atomic_add_64+0x4\n              unix`0xfffffffffb800ca0\n               90\n\n              unix`mutex_enter+0x10\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               90\n\n              unix`mutex_enter+0x10\n              genunix`unfalloc+0x61\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               91\n\n              unix`mutex_enter+0x10\n              genunix`traverse+0x9f\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               91\n\n              unix`mutex_enter+0x10\n              genunix`fsop_root+0x2d\n              genunix`traverse+0x87\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               92\n\n              unix`mutex_enter+0x10\n              zfs`zfs_lookup+0xc2\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               92\n\n              unix`mutex_exit\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               92\n\n              unix`mutex_enter+0x10\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               93\n\n              unix`mutex_enter+0x10\n              genunix`falloc+0x63\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               93\n\n              unix`mutex_enter+0x10\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               93\n\n              unix`mutex_enter+0x10\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               93\n\n              unix`mutex_enter+0x10\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               94\n\n              unix`mutex_enter+0x10\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               94\n\n              unix`mutex_exit+0x12\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               95\n\n              unix`mutex_enter+0x10\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               95\n\n              unix`mutex_enter+0x10\n              lofs`freelonode+0x1fe\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               95\n\n              unix`mutex_enter+0x10\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               96\n\n              unix`atomic_add_32_nv+0x6\n              genunix`unfalloc+0x4a\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               97\n\n              unix`atomic_add_64+0x4\n              unix`sys_syscall+0x1a1\n               97\n\n              unix`mutex_exit+0xc\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               97\n\n              unix`atomic_add_64+0x4\n              unix`sys_syscall+0x10e\n               98\n\n              unix`mutex_exit+0xc\n              genunix`kmem_alloc+0x4b\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n               99\n\n              unix`mutex_exit+0x12\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              100\n\n              unix`membar_consumer+0x3\n              lofs`makelonode+0x1c4\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              100\n\n              unix`atomic_add_64+0x4\n              unix`0xfffffffffb800c86\n              100\n\n              unix`mutex_enter+0x10\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              101\n\n              unix`mutex_destroy+0x74\n              genunix`rwst_destroy+0x1c\n              genunix`vn_vfslocks_rele+0xd6\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              102\n\n              unix`mutex_enter+0x10\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              102\n\n              unix`atomic_add_32+0x3\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              105\n\n              unix`mutex_enter+0x10\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              105\n\n              unix`mutex_exit+0xc\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              105\n\n              unix`membar_consumer+0x3\n              lofs`makelonode+0x36\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              106\n\n              unix`membar_consumer+0x3\n              genunix`vfs_matchops+0x1c\n              lofs`lo_lookup+0x1e6\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              106\n\n              unix`mutex_exit+0xc\n              genunix`vn_alloc+0x1a\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              106\n\n              unix`mutex_exit+0xc\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              107\n\n              unix`mutex_enter+0x10\n              ufs`ufs_lookup+0x36d\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              108\n\n              unix`mutex_exit+0xc\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              108\n\n              unix`mutex_enter+0x10\n              genunix`kmem_free+0x4e\n              genunix`audit_unfalloc+0x44\n              genunix`unfalloc+0x41\n              genunix`copen+0x4f3\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              109\n\n              genunix`pn_getcomponent+0xa8\n              genunix`lookuppnvp+0x16d\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              110\n\n              unix`mutex_enter+0x10\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              111\n\n              genunix`dnlc_lookup+0x5c\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              114\n\n              unix`mutex_enter+0x10\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0x92\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              114\n\n              unix`mutex_enter+0x10\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              114\n\n              unix`mutex_exit+0xc\n              lofs`freelonode+0x1fe\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              114\n\n              genunix`dnlc_lookup+0xe5\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              115\n\n              genunix`pn_getcomponent+0xb3\n              genunix`lookuppnvp+0x16d\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              116\n\n              genunix`rwst_enter_common+0x40\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              116\n\n              unix`mutex_enter+0x10\n              genunix`kmem_zalloc+0x47\n              genunix`audit_falloc+0x1f\n              genunix`falloc+0xf8\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              121\n\n              unix`mutex_exit+0xc\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              123\n\n              unix`mutex_exit+0x12\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              124\n\n              unix`mutex_exit+0xc\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              126\n\n              unix`atomic_add_32+0x3\n              genunix`falloc+0xbc\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              129\n\n              unix`tsc_read+0x3\n              genunix`gethrtime_unscaled+0xa\n              genunix`syscall_mstate+0x5d\n              unix`0xfffffffffb800ca0\n              145\n\n              unix`strlen+0x13\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              146\n\n              genunix`fop_lookup+0x113\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              154\n\n              unix`clear_int_flag+0x2\n              genunix`thread_lock+0x24\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n              157\n\n              unix`tsc_read+0x3\n              genunix`gethrtime_unscaled+0xa\n              genunix`syscall_mstate+0x5d\n              unix`sys_syscall+0x1a1\n              163\n\n              unix`copystr+0x34\n              genunix`pn_get_buf+0x43\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              164\n\n              unix`mutex_exit+0xc\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              168\n\n              unix`tsc_read+0x3\n              genunix`gethrtime_unscaled+0xa\n              genunix`syscall_mstate+0x5d\n              unix`0xfffffffffb800c86\n              169\n\n              unix`mutex_enter+0x10\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              169\n\n              lofs`lfind+0x38\n              lofs`makelonode+0x47\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              171\n\n              unix`mutex_exit+0xc\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              172\n\n              unix`atomic_add_32+0x3\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              174\n\n              unix`mutex_enter+0x10\n              lofs`freelonode+0x47\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              174\n\n              unix`mutex_exit+0xc\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              178\n\n              unix`tsc_read+0x3\n              genunix`gethrtime_unscaled+0xa\n              genunix`syscall_mstate+0x5d\n              unix`sys_syscall+0x10e\n              180\n\n              unix`mutex_enter+0x10\n              lofs`freelonode+0x1fe\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              186\n\n              genunix`fop_lookup+0xf8\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              188\n\n              genunix`dnlc_lookup+0x50\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              190\n\n              unix`mutex_enter+0x10\n              genunix`vn_free+0x9a\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              190\n\n              unix`mutex_enter+0x10\n              genunix`ufalloc+0x13\n              genunix`falloc+0x43\n              genunix`copen+0x1ab\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              191\n\n              unix`mutex_enter+0x10\n              genunix`kmem_free+0x4e\n              genunix`vn_free+0x37\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              193\n\n              unix`mutex_enter+0x10\n              lofs`freelonode+0x1ed\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              196\n\n              unix`mutex_enter+0x10\n              genunix`copen+0x4ea\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              196\n\n              unix`mutex_enter+0x10\n              zfs`zfs_lookup+0xaa\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              201\n\n              unix`mutex_exit+0xc\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              210\n\n              unix`mutex_enter+0x10\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              233\n\n              unix`mutex_enter+0x10\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              237\n\n              unix`mutex_exit+0xc\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              258\n\n              unix`copystr+0x3e\n              genunix`pn_get_buf+0x43\n              genunix`lookupnameatcred+0x69\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              261\n\n              unix`atomic_cas_64+0x8\n              lofs`makelonode+0x1c4\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              268\n\n              unix`mutex_enter+0x10\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              279\n\n              unix`mutex_enter+0x10\n              genunix`vn_vfsunlock+0x28\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              280\n\n              unix`mutex_enter+0x10\n              genunix`vn_vfsunlock+0x20\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              286\n\n              unix`mutex_enter+0x10\n              genunix`vn_vfsunlock+0x15\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              290\n\n              unix`mutex_enter+0x10\n              genunix`vn_alloc+0x1a\n              lofs`makelonode+0xb6\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              293\n\n              unix`mutex_enter+0x10\n              lofs`makelonode+0x36\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              298\n\n              unix`mutex_enter+0x10\n              lofs`makelonode+0xa9\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              298\n\n              unix`mutex_enter+0x10\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              301\n\n              unix`mutex_enter+0x10\n              genunix`rwst_tryenter+0x1a\n              genunix`vn_vfsrlock+0x2f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              305\n\n              unix`mutex_enter+0x10\n              genunix`kmem_free+0x4e\n              genunix`vn_vfslocks_rele+0xe3\n              genunix`vn_vfsunlock+0x30\n              genunix`traverse+0xb3\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              308\n\n              unix`atomic_add_32+0x3\n              lofs`lo_lookup+0x268\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              309\n\n              unix`mutex_enter+0x10\n              genunix`kmem_alloc+0x4b\n              genunix`vn_setpath+0xc2\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              318\n\n              unix`strlen+0x10\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              327\n\n              genunix`syscall_mstate+0x14d\n              unix`sys_syscall+0x1a1\n              330\n\n              unix`rw_exit+0xf\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              348\n\n              unix`mutex_enter+0x10\n              genunix`kmem_alloc+0x4b\n              genunix`vn_vfslocks_getlock+0x9c\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              349\n\n              unix`rw_enter+0x2b\n              ufs`ufs_lookup+0xc7\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              355\n\n              unix`splr+0x6a\n              genunix`thread_lock+0x24\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n              361\n\n              unix`mutex_enter+0x10\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              372\n\n              unix`strlen+0x8\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x387\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              407\n\n              unix`mutex_enter+0x10\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              genunix`lookuppnvp+0x229\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              420\n\n              unix`strlen+0x8\n              lofs`freelonode+0x1f5\n              lofs`lo_inactive+0x1d\n              genunix`fop_inactive+0x76\n              genunix`vn_rele+0x82\n              genunix`lookuppnvp+0x33b\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              534\n\n              unix`strlen+0xe\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              562\n\n              unix`sys_syscall+0xff\n              565\n\n              unix`mutex_enter+0x10\n              genunix`vn_vfsrlock+0x1f\n              genunix`traverse+0x30\n              lofs`lo_lookup+0x2ee\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              673\n\n              unix`lock_try+0x8\n              genunix`post_syscall+0x2e4\n              unix`0xfffffffffb800c91\n              774\n\n              unix`mutex_enter+0x10\n              ufs`ufs_lookup+0xa6\n              genunix`fop_lookup+0xa2\n              lofs`lo_lookup+0xbc\n              genunix`fop_lookup+0xa2\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              816\n\n              unix`mutex_enter+0x10\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n              884\n\n              unix`strlen+0x8\n              genunix`fop_lookup+0x210\n              genunix`lookuppnvp+0x1f6\n              genunix`lookuppnatcred+0x15e\n              genunix`lookupnameatcred+0xad\n              genunix`lookupnameat+0x39\n              genunix`vn_openat+0x315\n              genunix`copen+0x20c\n              genunix`openat+0x2a\n              genunix`open+0x25\n              unix`sys_syscall+0x17a\n             1535\n\n              unix`do_splx+0x65\n              genunix`disp_lock_exit+0x47\n              genunix`post_syscall+0x318\n              unix`0xfffffffffb800c91\n             1971\n"
  },
  {
    "path": "files.pl",
    "content": "#!/usr/bin/perl -w\n#\n# files.pl\tPrint file sizes in folded format, for a flame graph.\n#\n# This helps you understand storage consumed by a file system, by creating\n# a flame graph visualization of space consumed. This is basically a Perl\n# version of the \"find\" command, which emits in folded format for piping\n# into flamegraph.pl.\n#\n# Copyright (c) 2017 Brendan Gregg.\n# Licensed under the Apache License, Version 2.0 (the \"License\")\n#\n# 03-Feb-2017   Brendan Gregg   Created this.\n\nuse strict;\nuse File::Find;\n\nsub usage {\n\tprint STDERR \"USAGE: $0 [--xdev] [DIRECTORY]...\\n\";\n\tprint STDERR \"   eg, $0 /Users\\n\";\n\tprint STDERR \"   To not descend directories on other filesystems:\";\n\tprint STDERR \"   eg, $0 --xdev /\\n\";\n\tprint STDERR \"Intended to be piped to flamegraph.pl. Full example:\\n\";\n\tprint STDERR \"   $0 /Users | flamegraph.pl \" .\n\t    \"--hash --countname=bytes > files.svg\\n\";\n\tprint STDERR \"   $0 /usr /home /root /etc | flamegraph.pl \" .\n\t    \"--hash --countname=bytes > files.svg\\n\";\n\tprint STDERR \"   $0 --xdev / | flamegraph.pl \" .\n\t    \"--hash --countname=bytes > files.svg\\n\";\n\texit 1;\n}\n\nusage() if @ARGV == 0 or $ARGV[0] eq \"--help\" or $ARGV[0] eq \"-h\";\n\nmy $filter_xdev = 0;\nmy $xdev_id;\n\nforeach my $dir (@ARGV) {\n\tif ($dir eq \"--xdev\") {\n\t    $filter_xdev = 1;\n\t} else {\n\t    find(\\&wanted, $dir);\n\t}\n}\n\nsub wanted {\n\tmy ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size) = lstat($_);\n\treturn unless defined $size;\n\tif ($filter_xdev) {\n\t\tif (!$xdev_id) {\n\t\t\t$xdev_id = $dev;\n\t\t} elsif ($xdev_id ne $dev) {\n\t\t\t$File::Find::prune = 1;\n\t\t\treturn;\n\t\t}\n\t}\n\tmy $path = $File::Find::name;\n\t$path =~ tr/\\//;/;\t\t# delimiter\n\t$path =~ tr/;.a-zA-Z0-9-/_/c;\t# ditch whitespace and other chars\n\t$path =~ s/^;//;\n\tprint \"$path $size\\n\";\n}\n"
  },
  {
    "path": "flamegraph.pl",
    "content": "#!/usr/bin/perl -w\n#\n# flamegraph.pl\t\tflame stack grapher.\n#\n# This takes stack samples and renders a call graph, allowing hot functions\n# and codepaths to be quickly identified.  Stack samples can be generated using\n# tools such as DTrace, perf, SystemTap, and Instruments.\n#\n# USAGE: ./flamegraph.pl [options] input.txt > graph.svg\n#\n#        grep funcA input.txt | ./flamegraph.pl [options] > graph.svg\n#\n# Then open the resulting .svg in a web browser, for interactivity: mouse-over\n# frames for info, click to zoom, and ctrl-F to search.\n#\n# Options are listed in the usage message (--help).\n#\n# The input is stack frames and sample counts formatted as single lines.  Each\n# frame in the stack is semicolon separated, with a space and count at the end\n# of the line.  These can be generated for Linux perf script output using\n# stackcollapse-perf.pl, for DTrace using stackcollapse.pl, and for other tools\n# using the other stackcollapse programs.  Example input:\n#\n#  swapper;start_kernel;rest_init;cpu_idle;default_idle;native_safe_halt 1\n#\n# An optional extra column of counts can be provided to generate a differential\n# flame graph of the counts, colored red for more, and blue for less.  This\n# can be useful when using flame graphs for non-regression testing.\n# See the header comment in the difffolded.pl program for instructions.\n#\n# The input functions can optionally have annotations at the end of each\n# function name, following a precedent by some tools (Linux perf's _[k]):\n# \t_[k] for kernel\n#\t_[i] for inlined\n#\t_[j] for jit\n#\t_[w] for waker\n# Some of the stackcollapse programs support adding these annotations, eg,\n# stackcollapse-perf.pl --kernel --jit. They are used merely for colors by\n# some palettes, eg, flamegraph.pl --color=java.\n#\n# The output flame graph shows relative presence of functions in stack samples.\n# The ordering on the x-axis has no meaning; since the data is samples, time\n# order of events is not known.  The order used sorts function names\n# alphabetically.\n#\n# While intended to process stack samples, this can also process stack traces.\n# For example, tracing stacks for memory allocation, or resource usage.  You\n# can use --title to set the title to reflect the content, and --countname\n# to change \"samples\" to \"bytes\" etc.\n#\n# There are a few different palettes, selectable using --color.  By default,\n# the colors are selected at random (except for differentials).  Functions\n# called \"-\" will be printed gray, which can be used for stack separators (eg,\n# between user and kernel stacks).\n#\n# HISTORY\n#\n# This was inspired by Neelakanth Nadgir's excellent function_call_graph.rb\n# program, which visualized function entry and return trace events.  As Neel\n# wrote: \"The output displayed is inspired by Roch's CallStackAnalyzer which\n# was in turn inspired by the work on vftrace by Jan Boerhout\".  See:\n# https://blogs.oracle.com/realneel/entry/visualizing_callstacks_via_dtrace_and\n#\n# Copyright 2016 Netflix, Inc.\n# Copyright 2011 Joyent, Inc.  All rights reserved.\n# Copyright 2011 Brendan Gregg.  All rights reserved.\n#\n# CDDL HEADER START\n#\n# The contents of this file are subject to the terms of the\n# Common Development and Distribution License (the \"License\").\n# You may not use this file except in compliance with the License.\n#\n# You can obtain a copy of the license at docs/cddl1.txt or\n# http://opensource.org/licenses/CDDL-1.0.\n# See the License for the specific language governing permissions\n# and limitations under the License.\n#\n# When distributing Covered Code, include this CDDL HEADER in each\n# file and include the License file at docs/cddl1.txt.\n# If applicable, add the following below this CDDL HEADER, with the\n# fields enclosed by brackets \"[]\" replaced with your own identifying\n# information: Portions Copyright [yyyy] [name of copyright owner]\n#\n# CDDL HEADER END\n#\n# 11-Oct-2014\tAdrien Mahieux\tAdded zoom.\n# 21-Nov-2013   Shawn Sterling  Added consistent palette file option\n# 17-Mar-2013   Tim Bunce       Added options and more tunables.\n# 15-Dec-2011\tDave Pacheco\tSupport for frames with whitespace.\n# 10-Sep-2011\tBrendan Gregg\tCreated this.\n\nuse strict;\n\nuse Getopt::Long;\n\nuse open qw(:std :utf8);\n\n# tunables\nmy $encoding;\nmy $fonttype = \"Verdana\";\nmy $imagewidth = 1200;          # max width, pixels\nmy $frameheight = 16;           # max height is dynamic\nmy $fontsize = 12;              # base text size\nmy $fontwidth = 0.59;           # avg width relative to fontsize\nmy $minwidth = 0.1;             # min function width, pixels or percentage of time\nmy $nametype = \"Function:\";     # what are the names in the data?\nmy $countname = \"samples\";      # what are the counts in the data?\nmy $colors = \"hot\";             # color theme\nmy $bgcolors = \"\";              # background color theme\nmy $nameattrfile;               # file holding function attributes\nmy $timemax;                    # (override the) sum of the counts\nmy $factor = 1;                 # factor to scale counts by\nmy $hash = 0;                   # color by function name\nmy $rand = 0;                   # color randomly\nmy $palette = 0;                # if we use consistent palettes (default off)\nmy %palette_map;                # palette map hash\nmy $pal_file = \"palette.map\";   # palette map file name\nmy $stackreverse = 0;           # reverse stack order, switching merge end\nmy $inverted = 0;               # icicle graph\nmy $flamechart = 0;             # produce a flame chart (sort by time, do not merge stacks)\nmy $negate = 0;                 # switch differential hues\nmy $titletext = \"\";             # centered heading\nmy $titledefault = \"Flame Graph\";\t# overwritten by --title\nmy $titleinverted = \"Icicle Graph\";\t#   \"    \"\nmy $searchcolor = \"rgb(230,0,230)\";\t# color for search highlighting\nmy $notestext = \"\";\t\t# embedded notes in SVG\nmy $subtitletext = \"\";\t\t# second level title (optional)\nmy $help = 0;\n\nsub usage {\n\tdie <<USAGE_END;\nUSAGE: $0 [options] infile > outfile.svg\\n\n\t--title TEXT     # change title text\n\t--subtitle TEXT  # second level title (optional)\n\t--width NUM      # width of image (default 1200)\n\t--height NUM     # height of each frame (default 16)\n\t--minwidth NUM   # omit smaller functions. In pixels or use \"%\" for\n\t                 # percentage of time (default 0.1 pixels)\n\t--fonttype FONT  # font type (default \"Verdana\")\n\t--fontsize NUM   # font size (default 12)\n\t--countname TEXT # count type label (default \"samples\")\n\t--nametype TEXT  # name type label (default \"Function:\")\n\t--colors PALETTE # set color palette. choices are: hot (default), mem,\n\t                 # io, wakeup, chain, java, js, perl, red, green, blue,\n\t                 # aqua, yellow, purple, orange\n\t--bgcolors COLOR # set background colors. gradient choices are yellow\n\t                 # (default), blue, green, grey; flat colors use \"#rrggbb\"\n\t--hash           # colors are keyed by function name hash\n\t--random         # colors are randomly generated\n\t--cp             # use consistent palette (palette.map)\n\t--reverse        # generate stack-reversed flame graph\n\t--inverted       # icicle graph\n\t--flamechart     # produce a flame chart (sort by time, do not merge stacks)\n\t--negate         # switch differential hues (blue<->red)\n\t--notes TEXT     # add notes comment in SVG (for debugging)\n\t--help           # this message\n\n\teg,\n\t$0 --title=\"Flame Graph: malloc()\" trace.txt > graph.svg\nUSAGE_END\n}\n\nGetOptions(\n\t'fonttype=s'  => \\$fonttype,\n\t'width=i'     => \\$imagewidth,\n\t'height=i'    => \\$frameheight,\n\t'encoding=s'  => \\$encoding,\n\t'fontsize=f'  => \\$fontsize,\n\t'fontwidth=f' => \\$fontwidth,\n\t'minwidth=s'  => \\$minwidth,\n\t'title=s'     => \\$titletext,\n\t'subtitle=s'  => \\$subtitletext,\n\t'nametype=s'  => \\$nametype,\n\t'countname=s' => \\$countname,\n\t'nameattr=s'  => \\$nameattrfile,\n\t'total=s'     => \\$timemax,\n\t'factor=f'    => \\$factor,\n\t'colors=s'    => \\$colors,\n\t'bgcolors=s'  => \\$bgcolors,\n\t'hash'        => \\$hash,\n\t'random'      => \\$rand,\n\t'cp'          => \\$palette,\n\t'reverse'     => \\$stackreverse,\n\t'inverted'    => \\$inverted,\n\t'flamechart'  => \\$flamechart,\n\t'negate'      => \\$negate,\n\t'notes=s'     => \\$notestext,\n\t'help'        => \\$help,\n) or usage();\n$help && usage();\n\n# internals\nmy $ypad1 = $fontsize * 3;      # pad top, include title\nmy $ypad2 = $fontsize * 2 + 10; # pad bottom, include labels\nmy $ypad3 = $fontsize * 2;      # pad top, include subtitle (optional)\nmy $xpad = 10;                  # pad lefm and right\nmy $framepad = 1;\t\t# vertical padding for frames\nmy $depthmax = 0;\nmy %Events;\nmy %nameattr;\n\nif ($flamechart && $titletext eq \"\") {\n\t$titletext = \"Flame Chart\";\n}\n\nif ($titletext eq \"\") {\n\tunless ($inverted) {\n\t\t$titletext = $titledefault;\n\t} else {\n\t\t$titletext = $titleinverted;\n\t}\n}\n\nif ($nameattrfile) {\n\t# The name-attribute file format is a function name followed by a tab then\n\t# a sequence of tab separated name=value pairs.\n\topen my $attrfh, $nameattrfile or die \"Can't read $nameattrfile: $!\\n\";\n\twhile (<$attrfh>) {\n\t\tchomp;\n\t\tmy ($funcname, $attrstr) = split /\\t/, $_, 2;\n\t\tdie \"Invalid format in $nameattrfile\" unless defined $attrstr;\n\t\t$nameattr{$funcname} = { map { split /=/, $_, 2 } split /\\t/, $attrstr };\n\t}\n}\n\nif ($notestext =~ /[<>]/) {\n\tdie \"Notes string can't contain < or >\"\n}\n\n# Ensure minwidth is a valid floating-point number,\n# print usage string if not\nmy $minwidth_f;\nif ($minwidth =~ /^([0-9.]+)%?$/) {\n\t$minwidth_f = $1;\n} else {\n\twarn \"Value '$minwidth' is invalid for minwidth, expected a float.\\n\";\n\tusage();\n}\n\n# background colors:\n# - yellow gradient: default (hot, java, js, perl)\n# - green gradient: mem\n# - blue gradient: io, wakeup, chain\n# - gray gradient: flat colors (red, green, blue, ...)\nif ($bgcolors eq \"\") {\n\t# choose a default\n\tif ($colors eq \"mem\") {\n\t\t$bgcolors = \"green\";\n\t} elsif ($colors =~ /^(io|wakeup|chain)$/) {\n\t\t$bgcolors = \"blue\";\n\t} elsif ($colors =~ /^(red|green|blue|aqua|yellow|purple|orange)$/) {\n\t\t$bgcolors = \"grey\";\n\t} else {\n\t\t$bgcolors = \"yellow\";\n\t}\n}\nmy ($bgcolor1, $bgcolor2);\nif ($bgcolors eq \"yellow\") {\n\t$bgcolor1 = \"#eeeeee\";       # background color gradient start\n\t$bgcolor2 = \"#eeeeb0\";       # background color gradient stop\n} elsif ($bgcolors eq \"blue\") {\n\t$bgcolor1 = \"#eeeeee\"; $bgcolor2 = \"#e0e0ff\";\n} elsif ($bgcolors eq \"green\") {\n\t$bgcolor1 = \"#eef2ee\"; $bgcolor2 = \"#e0ffe0\";\n} elsif ($bgcolors eq \"grey\") {\n\t$bgcolor1 = \"#f8f8f8\"; $bgcolor2 = \"#e8e8e8\";\n} elsif ($bgcolors =~ /^#......$/) {\n\t$bgcolor1 = $bgcolor2 = $bgcolors;\n} else {\n\tdie \"Unrecognized bgcolor option \\\"$bgcolors\\\"\"\n}\n\n# SVG functions\n{ package SVG;\n\tsub new {\n\t\tmy $class = shift;\n\t\tmy $self = {};\n\t\tbless ($self, $class);\n\t\treturn $self;\n\t}\n\n\tsub header {\n\t\tmy ($self, $w, $h) = @_;\n\t\tmy $enc_attr = '';\n\t\tif (defined $encoding) {\n\t\t\t$enc_attr = qq{ encoding=\"$encoding\"};\n\t\t}\n\t\t$self->{svg} .= <<SVG;\n<?xml version=\"1.0\"$enc_attr standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n<svg version=\"1.1\" width=\"$w\" height=\"$h\" onload=\"init(evt)\" viewBox=\"0 0 $w $h\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->\n<!-- NOTES: $notestext -->\nSVG\n\t}\n\n\tsub include {\n\t\tmy ($self, $content) = @_;\n\t\t$self->{svg} .= $content;\n\t}\n\n\tsub colorAllocate {\n\t\tmy ($self, $r, $g, $b) = @_;\n\t\treturn \"rgb($r,$g,$b)\";\n\t}\n\n\tsub group_start {\n\t\tmy ($self, $attr) = @_;\n\n\t\tmy @g_attr = map {\n\t\t\texists $attr->{$_} ? sprintf(qq/$_=\"%s\"/, $attr->{$_}) : ()\n\t\t} qw(id class);\n\t\tpush @g_attr, $attr->{g_extra} if $attr->{g_extra};\n\t\tif ($attr->{href}) {\n\t\t\tmy @a_attr;\n\t\t\tpush @a_attr, sprintf qq/xlink:href=\"%s\"/, $attr->{href} if $attr->{href};\n\t\t\t# default target=_top else links will open within SVG <object>\n\t\t\tpush @a_attr, sprintf qq/target=\"%s\"/, $attr->{target} || \"_top\";\n\t\t\tpush @a_attr, $attr->{a_extra}                           if $attr->{a_extra};\n\t\t\t$self->{svg} .= sprintf qq/<a %s>\\n/, join(' ', (@a_attr, @g_attr));\n\t\t} else {\n\t\t\t$self->{svg} .= sprintf qq/<g %s>\\n/, join(' ', @g_attr);\n\t\t}\n\n\t\t$self->{svg} .= sprintf qq/<title>%s<\\/title>/, $attr->{title}\n\t\t\tif $attr->{title}; # should be first element within g container\n\t}\n\n\tsub group_end {\n\t\tmy ($self, $attr) = @_;\n\t\t$self->{svg} .= $attr->{href} ? qq/<\\/a>\\n/ : qq/<\\/g>\\n/;\n\t}\n\n\tsub filledRectangle {\n\t\tmy ($self, $x1, $y1, $x2, $y2, $fill, $extra) = @_;\n\t\t$x1 = sprintf \"%0.1f\", $x1;\n\t\t$x2 = sprintf \"%0.1f\", $x2;\n\t\tmy $w = sprintf \"%0.1f\", $x2 - $x1;\n\t\tmy $h = sprintf \"%0.1f\", $y2 - $y1;\n\t\t$extra = defined $extra ? $extra : \"\";\n\t\t$self->{svg} .= qq/<rect x=\"$x1\" y=\"$y1\" width=\"$w\" height=\"$h\" fill=\"$fill\" $extra \\/>\\n/;\n\t}\n\n\tsub stringTTF {\n\t\tmy ($self, $id, $x, $y, $str, $extra) = @_;\n\t\t$x = sprintf \"%0.2f\", $x;\n\t\t$id =  defined $id ? qq/id=\"$id\"/ : \"\";\n\t\t$extra ||= \"\";\n\t\t$self->{svg} .= qq/<text $id x=\"$x\" y=\"$y\" $extra>$str<\\/text>\\n/;\n\t}\n\n\tsub svg {\n\t\tmy $self = shift;\n\t\treturn \"$self->{svg}</svg>\\n\";\n\t}\n\t1;\n}\n\nsub namehash {\n\t# Generate a vector hash for the name string, weighting early over\n\t# later characters. We want to pick the same colors for function\n\t# names across different flame graphs.\n\tmy $name = shift;\n\tmy $vector = 0;\n\tmy $weight = 1;\n\tmy $max = 1;\n\tmy $mod = 10;\n\t# if module name present, trunc to 1st char\n\t$name =~ s/.(.*?)`//;\n\tforeach my $c (split //, $name) {\n\t\tmy $i = (ord $c) % $mod;\n\t\t$vector += ($i / ($mod++ - 1)) * $weight;\n\t\t$max += 1 * $weight;\n\t\t$weight *= 0.70;\n\t\tlast if $mod > 12;\n\t}\n\treturn (1 - $vector / $max)\n}\n\nsub sum_namehash {\n  my $name = shift;\n  return unpack(\"%32W*\", $name);\n}\n\nsub random_namehash {\n\t# Generate a random hash for the name string.\n\t# This ensures that functions with the same name have the same color,\n\t# both within a flamegraph and across multiple flamegraphs without\n\t# needing to set a palette and while preserving the original flamegraph\n\t# optic, unlike what happens with --hash.\n\tmy $name = shift;\n\tmy $hash = sum_namehash($name);\n\tsrand($hash);\n\treturn rand(1)\n}\n\nsub color {\n\tmy ($type, $hash, $name) = @_;\n\tmy ($v1, $v2, $v3);\n\n\tif ($hash) {\n\t\t$v1 = namehash($name);\n\t\t$v2 = $v3 = namehash(scalar reverse $name);\n\t} elsif ($rand) {\n\t\t$v1 = rand(1);\n\t\t$v2 = rand(1);\n\t\t$v3 = rand(1);\n\t} else {\n\t\t$v1 = random_namehash($name);\n\t\t$v2 = random_namehash($name);\n\t\t$v3 = random_namehash($name);\n\t}\n\n\t# theme palettes\n\tif (defined $type and $type eq \"hot\") {\n\t\tmy $r = 205 + int(50 * $v3);\n\t\tmy $g = 0 + int(230 * $v1);\n\t\tmy $b = 0 + int(55 * $v2);\n\t\treturn \"rgb($r,$g,$b)\";\n\t}\n\tif (defined $type and $type eq \"mem\") {\n\t\tmy $r = 0;\n\t\tmy $g = 190 + int(50 * $v2);\n\t\tmy $b = 0 + int(210 * $v1);\n\t\treturn \"rgb($r,$g,$b)\";\n\t}\n\tif (defined $type and $type eq \"io\") {\n\t\tmy $r = 80 + int(60 * $v1);\n\t\tmy $g = $r;\n\t\tmy $b = 190 + int(55 * $v2);\n\t\treturn \"rgb($r,$g,$b)\";\n\t}\n\n\t# multi palettes\n\tif (defined $type and $type eq \"java\") {\n\t\t# Handle both annotations (_[j], _[i], ...; which are\n\t\t# accurate), as well as input that lacks any annotations, as\n\t\t# best as possible. Without annotations, we get a little hacky\n\t\t# and match on java|org|com, etc.\n\t\tif ($name =~ m:_\\[j\\]$:) {\t# jit annotation\n\t\t\t$type = \"green\";\n\t\t} elsif ($name =~ m:_\\[i\\]$:) {\t# inline annotation\n\t\t\t$type = \"aqua\";\n\t\t} elsif ($name =~ m:^L?(java|javax|jdk|net|org|com|io|sun)/:) {\t# Java\n\t\t\t$type = \"green\";\n\t\t} elsif ($name =~ /:::/) {      # Java, typical perf-map-agent method separator\n\t\t\t$type = \"green\";\n\t\t} elsif ($name =~ /::/) {\t# C++\n\t\t\t$type = \"yellow\";\n\t\t} elsif ($name =~ m:_\\[k\\]$:) {\t# kernel annotation\n\t\t\t$type = \"orange\";\n\t\t} elsif ($name =~ /::/) {\t# C++\n\t\t\t$type = \"yellow\";\n\t\t} else {\t\t\t# system\n\t\t\t$type = \"red\";\n\t\t}\n\t\t# fall-through to color palettes\n\t}\n\tif (defined $type and $type eq \"perl\") {\n\t\tif ($name =~ /::/) {\t\t# C++\n\t\t\t$type = \"yellow\";\n\t\t} elsif ($name =~ m:Perl: or $name =~ m:\\.pl:) {\t# Perl\n\t\t\t$type = \"green\";\n\t\t} elsif ($name =~ m:_\\[k\\]$:) {\t# kernel\n\t\t\t$type = \"orange\";\n\t\t} else {\t\t\t# system\n\t\t\t$type = \"red\";\n\t\t}\n\t\t# fall-through to color palettes\n\t}\n\tif (defined $type and $type eq \"js\") {\n\t\t# Handle both annotations (_[j], _[i], ...; which are\n\t\t# accurate), as well as input that lacks any annotations, as\n\t\t# best as possible. Without annotations, we get a little hacky,\n\t\t# and match on a \"/\" with a \".js\", etc.\n\t\tif ($name =~ m:_\\[j\\]$:) {\t# jit annotation\n\t\t\tif ($name =~ m:/:) {\n\t\t\t\t$type = \"green\";\t# source\n\t\t\t} else {\n\t\t\t\t$type = \"aqua\";\t\t# builtin\n\t\t\t}\n\t\t} elsif ($name =~ /::/) {\t# C++\n\t\t\t$type = \"yellow\";\n\t\t} elsif ($name =~ m:/.*\\.js:) {\t# JavaScript (match \"/\" in path)\n\t\t\t$type = \"green\";\n\t\t} elsif ($name =~ m/:/) {\t# JavaScript (match \":\" in builtin)\n\t\t\t$type = \"aqua\";\n\t\t} elsif ($name =~ m/^ $/) {\t# Missing symbol\n\t\t\t$type = \"green\";\n\t\t} elsif ($name =~ m:_\\[k\\]:) {\t# kernel\n\t\t\t$type = \"orange\";\n\t\t} else {\t\t\t# system\n\t\t\t$type = \"red\";\n\t\t}\n\t\t# fall-through to color palettes\n\t}\n\tif (defined $type and $type eq \"wakeup\") {\n\t\t$type = \"aqua\";\n\t\t# fall-through to color palettes\n\t}\n\tif (defined $type and $type eq \"chain\") {\n\t\tif ($name =~ m:_\\[w\\]:) {\t# waker\n\t\t\t$type = \"aqua\"\n\t\t} else {\t\t\t# off-CPU\n\t\t\t$type = \"blue\";\n\t\t}\n\t\t# fall-through to color palettes\n\t}\n\n\t# color palettes\n\tif (defined $type and $type eq \"red\") {\n\t\tmy $r = 200 + int(55 * $v1);\n\t\tmy $x = 50 + int(80 * $v1);\n\t\treturn \"rgb($r,$x,$x)\";\n\t}\n\tif (defined $type and $type eq \"green\") {\n\t\tmy $g = 200 + int(55 * $v1);\n\t\tmy $x = 50 + int(60 * $v1);\n\t\treturn \"rgb($x,$g,$x)\";\n\t}\n\tif (defined $type and $type eq \"blue\") {\n\t\tmy $b = 205 + int(50 * $v1);\n\t\tmy $x = 80 + int(60 * $v1);\n\t\treturn \"rgb($x,$x,$b)\";\n\t}\n\tif (defined $type and $type eq \"yellow\") {\n\t\tmy $x = 175 + int(55 * $v1);\n\t\tmy $b = 50 + int(20 * $v1);\n\t\treturn \"rgb($x,$x,$b)\";\n\t}\n\tif (defined $type and $type eq \"purple\") {\n\t\tmy $x = 190 + int(65 * $v1);\n\t\tmy $g = 80 + int(60 * $v1);\n\t\treturn \"rgb($x,$g,$x)\";\n\t}\n\tif (defined $type and $type eq \"aqua\") {\n\t\tmy $r = 50 + int(60 * $v1);\n\t\tmy $g = 165 + int(55 * $v1);\n\t\tmy $b = 165 + int(55 * $v1);\n\t\treturn \"rgb($r,$g,$b)\";\n\t}\n\tif (defined $type and $type eq \"orange\") {\n\t\tmy $r = 190 + int(65 * $v1);\n\t\tmy $g = 90 + int(65 * $v1);\n\t\treturn \"rgb($r,$g,0)\";\n\t}\n\n\treturn \"rgb(0,0,0)\";\n}\n\nsub color_scale {\n\tmy ($value, $max) = @_;\n\tmy ($r, $g, $b) = (255, 255, 255);\n\t$value = -$value if $negate;\n\tif ($value > 0) {\n\t\t$g = $b = int(210 * ($max - $value) / $max);\n\t} elsif ($value < 0) {\n\t\t$r = $g = int(210 * ($max + $value) / $max);\n\t}\n\treturn \"rgb($r,$g,$b)\";\n}\n\nsub color_map {\n\tmy ($colors, $func) = @_;\n\tif (exists $palette_map{$func}) {\n\t\treturn $palette_map{$func};\n\t} else {\n\t\t$palette_map{$func} = color($colors, $hash, $func);\n\t\treturn $palette_map{$func};\n\t}\n}\n\nsub write_palette {\n\topen(FILE, \">$pal_file\");\n\tforeach my $key (sort keys %palette_map) {\n\t\tprint FILE $key.\"->\".$palette_map{$key}.\"\\n\";\n\t}\n\tclose(FILE);\n}\n\nsub read_palette {\n\tif (-e $pal_file) {\n\topen(FILE, $pal_file) or die \"can't open file $pal_file: $!\";\n\twhile ( my $line = <FILE>) {\n\t\tchomp($line);\n\t\t(my $key, my $value) = split(\"->\",$line);\n\t\t$palette_map{$key}=$value;\n\t}\n\tclose(FILE)\n\t}\n}\n\nmy %Node;\t# Hash of merged frame data\nmy %Tmp;\n\n# flow() merges two stacks, storing the merged frames and value data in %Node.\nsub flow {\n\tmy ($last, $this, $v, $d) = @_;\n\n\tmy $len_a = @$last - 1;\n\tmy $len_b = @$this - 1;\n\n\tmy $i = 0;\n\tmy $len_same;\n\tfor (; $i <= $len_a; $i++) {\n\t\tlast if $i > $len_b;\n\t\tlast if $last->[$i] ne $this->[$i];\n\t}\n\t$len_same = $i;\n\n\tfor ($i = $len_a; $i >= $len_same; $i--) {\n\t\tmy $k = \"$last->[$i];$i\";\n\t\t# a unique ID is constructed from \"func;depth;etime\";\n\t\t# func-depth isn't unique, it may be repeated later.\n\t\t$Node{\"$k;$v\"}->{stime} = delete $Tmp{$k}->{stime};\n\t\tif (defined $Tmp{$k}->{delta}) {\n\t\t\t$Node{\"$k;$v\"}->{delta} = delete $Tmp{$k}->{delta};\n\t\t}\n\t\tdelete $Tmp{$k};\n\t}\n\n\tfor ($i = $len_same; $i <= $len_b; $i++) {\n\t\tmy $k = \"$this->[$i];$i\";\n\t\t$Tmp{$k}->{stime} = $v;\n\t\tif (defined $d) {\n\t\t\t$Tmp{$k}->{delta} += $i == $len_b ? $d : 0;\n\t\t}\n\t}\n\n        return $this;\n}\n\n# parse input\nmy @Data;\nmy @SortedData;\nmy $last = [];\nmy $time = 0;\nmy $delta = undef;\nmy $ignored = 0;\nmy $line;\nmy $maxdelta = 1;\n\n# reverse if needed\nforeach (<>) {\n\tchomp;\n\t$line = $_;\n\tif ($stackreverse) {\n\t\t# there may be an extra samples column for differentials\n\t\t# XXX todo: redo these REs as one. It's repeated below.\n\t\tmy($stack, $samples) = (/^(.*)\\s+?(\\d+(?:\\.\\d*)?)$/);\n\t\tmy $samples2 = undef;\n\t\tif ($stack =~ /^(.*)\\s+?(\\d+(?:\\.\\d*)?)$/) {\n\t\t\t$samples2 = $samples;\n\t\t\t($stack, $samples) = $stack =~ (/^(.*)\\s+?(\\d+(?:\\.\\d*)?)$/);\n\t\t\tunshift @Data, join(\";\", reverse split(\";\", $stack)) . \" $samples $samples2\";\n\t\t} else {\n\t\t\tunshift @Data, join(\";\", reverse split(\";\", $stack)) . \" $samples\";\n\t\t}\n\t} else {\n\t\tunshift @Data, $line;\n\t}\n}\n\nif ($flamechart) {\n\t# In flame chart mode, just reverse the data so time moves from left to right.\n\t@SortedData = reverse @Data;\n} else {\n\t@SortedData = sort @Data;\n}\n\n# process and merge frames\nforeach (@SortedData) {\n\tchomp;\n\t# process: folded_stack count\n\t# eg: func_a;func_b;func_c 31\n\tmy ($stack, $samples) = (/^(.*)\\s+?(\\d+(?:\\.\\d*)?)$/);\n\tunless (defined $samples and defined $stack) {\n\t\t++$ignored;\n\t\tnext;\n\t}\n\n\t# there may be an extra samples column for differentials:\n\tmy $samples2 = undef;\n\tif ($stack =~ /^(.*)\\s+?(\\d+(?:\\.\\d*)?)$/) {\n\t\t$samples2 = $samples;\n\t\t($stack, $samples) = $stack =~ (/^(.*)\\s+?(\\d+(?:\\.\\d*)?)$/);\n\t}\n\t$delta = undef;\n\tif (defined $samples2) {\n\t\t$delta = $samples2 - $samples;\n\t\t$maxdelta = abs($delta) if abs($delta) > $maxdelta;\n\t}\n\n\t# for chain graphs, annotate waker frames with \"_[w]\", for later\n\t# coloring. This is a hack, but has a precedent (\"_[k]\" from perf).\n\tif ($colors eq \"chain\") {\n\t\tmy @parts = split \";--;\", $stack;\n\t\tmy @newparts = ();\n\t\t$stack = shift @parts;\n\t\t$stack .= \";--;\";\n\t\tforeach my $part (@parts) {\n\t\t\t$part =~ s/;/_[w];/g;\n\t\t\t$part .= \"_[w]\";\n\t\t\tpush @newparts, $part;\n\t\t}\n\t\t$stack .= join \";--;\", @parts;\n\t}\n\n\t# merge frames and populate %Node:\n\t$last = flow($last, [ '', split \";\", $stack ], $time, $delta);\n\n\tif (defined $samples2) {\n\t\t$time += $samples2;\n\t} else {\n\t\t$time += $samples;\n\t}\n}\nflow($last, [], $time, $delta);\n\nif ($countname eq \"samples\") {\n\t# If $countname is used, it's likely that we're not measuring in stack samples\n\t# (e.g. time could be the unit), so don't warn.\n\twarn \"Stack count is low ($time). Did something go wrong?\\n\" if $time < 100;\n}\n\nwarn \"Ignored $ignored lines with invalid format\\n\" if $ignored;\nunless ($time) {\n\twarn \"ERROR: No stack counts found\\n\";\n\tmy $im = SVG->new();\n\t# emit an error message SVG, for tools automating flamegraph use\n\tmy $imageheight = $fontsize * 5;\n\t$im->header($imagewidth, $imageheight);\n\t$im->stringTTF(undef, int($imagewidth / 2), $fontsize * 2,\n\t    \"ERROR: No valid input provided to flamegraph.pl.\");\n\tprint $im->svg;\n\texit 2;\n}\nif ($timemax and $timemax < $time) {\n\twarn \"Specified --total $timemax is less than actual total $time, so ignored\\n\"\n\tif $timemax/$time > 0.02; # only warn is significant (e.g., not rounding etc)\n\tundef $timemax;\n}\n$timemax ||= $time;\n\nmy $widthpertime = ($imagewidth - 2 * $xpad) / $timemax;\n\n# Treat as a percentage of time if the string ends in a \"%\".\nmy $minwidth_time;\nif ($minwidth =~ /%$/) {\n\t$minwidth_time = $timemax * $minwidth_f / 100;\n} else {\n\t$minwidth_time = $minwidth_f / $widthpertime;\n}\n\n# prune blocks that are too narrow and determine max depth\nwhile (my ($id, $node) = each %Node) {\n\tmy ($func, $depth, $etime) = split \";\", $id;\n\tmy $stime = $node->{stime};\n\tdie \"missing start for $id\" if not defined $stime;\n\n\tif (($etime-$stime) < $minwidth_time) {\n\t\tdelete $Node{$id};\n\t\tnext;\n\t}\n\t$depthmax = $depth if $depth > $depthmax;\n}\n\n# draw canvas, and embed interactive JavaScript program\nmy $imageheight = (($depthmax + 1) * $frameheight) + $ypad1 + $ypad2;\n$imageheight += $ypad3 if $subtitletext ne \"\";\nmy $titlesize = $fontsize + 5;\nmy $im = SVG->new();\nmy ($black, $vdgrey, $dgrey) = (\n\t$im->colorAllocate(0, 0, 0),\n\t$im->colorAllocate(160, 160, 160),\n\t$im->colorAllocate(200, 200, 200),\n    );\n$im->header($imagewidth, $imageheight);\nmy $inc = <<INC;\n<defs>\n\t<linearGradient id=\"background\" y1=\"0\" y2=\"1\" x1=\"0\" x2=\"0\" >\n\t\t<stop stop-color=\"$bgcolor1\" offset=\"5%\" />\n\t\t<stop stop-color=\"$bgcolor2\" offset=\"95%\" />\n\t</linearGradient>\n</defs>\n<style type=\"text/css\">\n\ttext { font-family:$fonttype; font-size:${fontsize}px; fill:$black; }\n\t#search, #ignorecase { opacity:0.1; cursor:pointer; }\n\t#search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }\n\t#subtitle { text-anchor:middle; font-color:$vdgrey; }\n\t#title { text-anchor:middle; font-size:${titlesize}px}\n\t#unzoom { cursor:pointer; }\n\t#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }\n\t.hide { display:none; }\n\t.parent { opacity:0.5; }\n</style>\n<script type=\"text/ecmascript\">\n<![CDATA[\n\t\"use strict\";\n\tvar details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;\n\tfunction init(evt) {\n\t\tdetails = document.getElementById(\"details\").firstChild;\n\t\tsearchbtn = document.getElementById(\"search\");\n\t\tignorecaseBtn = document.getElementById(\"ignorecase\");\n\t\tunzoombtn = document.getElementById(\"unzoom\");\n\t\tmatchedtxt = document.getElementById(\"matched\");\n\t\tsvg = document.getElementsByTagName(\"svg\")[0];\n\t\tsearching = 0;\n\t\tcurrentSearchTerm = null;\n\n\t\t// use GET parameters to restore a flamegraphs state.\n\t\tvar params = get_params();\n\t\tif (params.x && params.y)\n\t\t\tzoom(find_group(document.querySelector('[x=\"' + params.x + '\"][y=\"' + params.y + '\"]')));\n                if (params.s) search(params.s);\n\t}\n\n\t// event listeners\n\twindow.addEventListener(\"click\", function(e) {\n\t\tvar target = find_group(e.target);\n\t\tif (target) {\n\t\t\tif (target.nodeName == \"a\") {\n\t\t\t\tif (e.ctrlKey === false) return;\n\t\t\t\te.preventDefault();\n\t\t\t}\n\t\t\tif (target.classList.contains(\"parent\")) unzoom(true);\n\t\t\tzoom(target);\n\t\t\tif (!document.querySelector('.parent')) {\n\t\t\t\t// we have basically done a clearzoom so clear the url\n\t\t\t\tvar params = get_params();\n\t\t\t\tif (params.x) delete params.x;\n\t\t\t\tif (params.y) delete params.y;\n\t\t\t\thistory.replaceState(null, null, parse_params(params));\n\t\t\t\tunzoombtn.classList.add(\"hide\");\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// set parameters for zoom state\n\t\t\tvar el = target.querySelector(\"rect\");\n\t\t\tif (el && el.attributes && el.attributes.y && el.attributes._orig_x) {\n\t\t\t\tvar params = get_params()\n\t\t\t\tparams.x = el.attributes._orig_x.value;\n\t\t\t\tparams.y = el.attributes.y.value;\n\t\t\t\thistory.replaceState(null, null, parse_params(params));\n\t\t\t}\n\t\t}\n\t\telse if (e.target.id == \"unzoom\") clearzoom();\n\t\telse if (e.target.id == \"search\") search_prompt();\n\t\telse if (e.target.id == \"ignorecase\") toggle_ignorecase();\n\t}, false)\n\n\t// mouse-over for info\n\t// show\n\twindow.addEventListener(\"mouseover\", function(e) {\n\t\tvar target = find_group(e.target);\n\t\tif (target) details.nodeValue = \"$nametype \" + g_to_text(target);\n\t}, false)\n\n\t// clear\n\twindow.addEventListener(\"mouseout\", function(e) {\n\t\tvar target = find_group(e.target);\n\t\tif (target) details.nodeValue = ' ';\n\t}, false)\n\n\t// ctrl-F for search\n\t// ctrl-I to toggle case-sensitive search\n\twindow.addEventListener(\"keydown\",function (e) {\n\t\tif (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {\n\t\t\te.preventDefault();\n\t\t\tsearch_prompt();\n\t\t}\n\t\telse if (e.ctrlKey && e.keyCode === 73) {\n\t\t\te.preventDefault();\n\t\t\ttoggle_ignorecase();\n\t\t}\n\t}, false)\n\n\t// functions\n\tfunction get_params() {\n\t\tvar params = {};\n\t\tvar paramsarr = window.location.search.substr(1).split('&');\n\t\tfor (var i = 0; i < paramsarr.length; ++i) {\n\t\t\tvar tmp = paramsarr[i].split(\"=\");\n\t\t\tif (!tmp[0] || !tmp[1]) continue;\n\t\t\tparams[tmp[0]]  = decodeURIComponent(tmp[1]);\n\t\t}\n\t\treturn params;\n\t}\n\tfunction parse_params(params) {\n\t\tvar uri = \"?\";\n\t\tfor (var key in params) {\n\t\t\turi += key + '=' + encodeURIComponent(params[key]) + '&';\n\t\t}\n\t\tif (uri.slice(-1) == \"&\")\n\t\t\turi = uri.substring(0, uri.length - 1);\n\t\tif (uri == '?')\n\t\t\turi = window.location.href.split('?')[0];\n\t\treturn uri;\n\t}\n\tfunction find_child(node, selector) {\n\t\tvar children = node.querySelectorAll(selector);\n\t\tif (children.length) return children[0];\n\t}\n\tfunction find_group(node) {\n\t\tvar parent = node.parentElement;\n\t\tif (!parent) return;\n\t\tif (parent.id == \"frames\") return node;\n\t\treturn find_group(parent);\n\t}\n\tfunction orig_save(e, attr, val) {\n\t\tif (e.attributes[\"_orig_\" + attr] != undefined) return;\n\t\tif (e.attributes[attr] == undefined) return;\n\t\tif (val == undefined) val = e.attributes[attr].value;\n\t\te.setAttribute(\"_orig_\" + attr, val);\n\t}\n\tfunction orig_load(e, attr) {\n\t\tif (e.attributes[\"_orig_\"+attr] == undefined) return;\n\t\te.attributes[attr].value = e.attributes[\"_orig_\" + attr].value;\n\t\te.removeAttribute(\"_orig_\"+attr);\n\t}\n\tfunction g_to_text(e) {\n\t\tvar text = find_child(e, \"title\").firstChild.nodeValue;\n\t\treturn (text)\n\t}\n\tfunction g_to_func(e) {\n\t\tvar func = g_to_text(e);\n\t\t// if there's any manipulation we want to do to the function\n\t\t// name before it's searched, do it here before returning.\n\t\treturn (func);\n\t}\n\tfunction update_text(e) {\n\t\tvar r = find_child(e, \"rect\");\n\t\tvar t = find_child(e, \"text\");\n\t\tvar w = parseFloat(r.attributes.width.value) -3;\n\t\tvar txt = find_child(e, \"title\").textContent.replace(/\\\\([^(]*\\\\)\\$/,\"\");\n\t\tt.attributes.x.value = parseFloat(r.attributes.x.value) + 3;\n\n\t\t// Smaller than this size won't fit anything\n\t\tif (w < 2 * $fontsize * $fontwidth) {\n\t\t\tt.textContent = \"\";\n\t\t\treturn;\n\t\t}\n\n\t\tt.textContent = txt;\n\t\tvar sl = t.getSubStringLength(0, txt.length);\n\t\t// check if only whitespace or if we can fit the entire string into width w\n\t\tif (/^ *\\$/.test(txt) || sl < w)\n\t\t\treturn;\n\n\t\t// this isn't perfect, but gives a good starting point\n\t\t// and avoids calling getSubStringLength too often\n\t\tvar start = Math.floor((w/sl) * txt.length);\n\t\tfor (var x = start; x > 0; x = x-2) {\n\t\t\tif (t.getSubStringLength(0, x + 2) <= w) {\n\t\t\t\tt.textContent = txt.substring(0, x) + \"..\";\n\t\t\t\treturn;\n\t\t\t}\n\t\t}\n\t\tt.textContent = \"\";\n\t}\n\n\t// zoom\n\tfunction zoom_reset(e) {\n\t\tif (e.attributes != undefined) {\n\t\t\torig_load(e, \"x\");\n\t\t\torig_load(e, \"width\");\n\t\t}\n\t\tif (e.childNodes == undefined) return;\n\t\tfor (var i = 0, c = e.childNodes; i < c.length; i++) {\n\t\t\tzoom_reset(c[i]);\n\t\t}\n\t}\n\tfunction zoom_child(e, x, ratio) {\n\t\tif (e.attributes != undefined) {\n\t\t\tif (e.attributes.x != undefined) {\n\t\t\t\torig_save(e, \"x\");\n\t\t\t\te.attributes.x.value = (parseFloat(e.attributes.x.value) - x - $xpad) * ratio + $xpad;\n\t\t\t\tif (e.tagName == \"text\")\n\t\t\t\t\te.attributes.x.value = find_child(e.parentNode, \"rect[x]\").attributes.x.value + 3;\n\t\t\t}\n\t\t\tif (e.attributes.width != undefined) {\n\t\t\t\torig_save(e, \"width\");\n\t\t\t\te.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;\n\t\t\t}\n\t\t}\n\n\t\tif (e.childNodes == undefined) return;\n\t\tfor (var i = 0, c = e.childNodes; i < c.length; i++) {\n\t\t\tzoom_child(c[i], x - $xpad, ratio);\n\t\t}\n\t}\n\tfunction zoom_parent(e) {\n\t\tif (e.attributes) {\n\t\t\tif (e.attributes.x != undefined) {\n\t\t\t\torig_save(e, \"x\");\n\t\t\t\te.attributes.x.value = $xpad;\n\t\t\t}\n\t\t\tif (e.attributes.width != undefined) {\n\t\t\t\torig_save(e, \"width\");\n\t\t\t\te.attributes.width.value = parseInt(svg.width.baseVal.value) - ($xpad * 2);\n\t\t\t}\n\t\t}\n\t\tif (e.childNodes == undefined) return;\n\t\tfor (var i = 0, c = e.childNodes; i < c.length; i++) {\n\t\t\tzoom_parent(c[i]);\n\t\t}\n\t}\n\tfunction zoom(node) {\n\t\tvar attr = find_child(node, \"rect\").attributes;\n\t\tvar width = parseFloat(attr.width.value);\n\t\tvar xmin = parseFloat(attr.x.value);\n\t\tvar xmax = parseFloat(xmin + width);\n\t\tvar ymin = parseFloat(attr.y.value);\n\t\tvar ratio = (svg.width.baseVal.value - 2 * $xpad) / width;\n\n\t\t// XXX: Workaround for JavaScript float issues (fix me)\n\t\tvar fudge = 0.0001;\n\n\t\tunzoombtn.classList.remove(\"hide\");\n\n\t\tvar el = document.getElementById(\"frames\").children;\n\t\tfor (var i = 0; i < el.length; i++) {\n\t\t\tvar e = el[i];\n\t\t\tvar a = find_child(e, \"rect\").attributes;\n\t\t\tvar ex = parseFloat(a.x.value);\n\t\t\tvar ew = parseFloat(a.width.value);\n\t\t\tvar upstack;\n\t\t\t// Is it an ancestor\n\t\t\tif ($inverted == 0) {\n\t\t\t\tupstack = parseFloat(a.y.value) > ymin;\n\t\t\t} else {\n\t\t\t\tupstack = parseFloat(a.y.value) < ymin;\n\t\t\t}\n\t\t\tif (upstack) {\n\t\t\t\t// Direct ancestor\n\t\t\t\tif (ex <= xmin && (ex+ew+fudge) >= xmax) {\n\t\t\t\t\te.classList.add(\"parent\");\n\t\t\t\t\tzoom_parent(e);\n\t\t\t\t\tupdate_text(e);\n\t\t\t\t}\n\t\t\t\t// not in current path\n\t\t\t\telse\n\t\t\t\t\te.classList.add(\"hide\");\n\t\t\t}\n\t\t\t// Children maybe\n\t\t\telse {\n\t\t\t\t// no common path\n\t\t\t\tif (ex < xmin || ex + fudge >= xmax) {\n\t\t\t\t\te.classList.add(\"hide\");\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tzoom_child(e, xmin, ratio);\n\t\t\t\t\tupdate_text(e);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tsearch();\n\t}\n\tfunction unzoom(dont_update_text) {\n\t\tunzoombtn.classList.add(\"hide\");\n\t\tvar el = document.getElementById(\"frames\").children;\n\t\tfor(var i = 0; i < el.length; i++) {\n\t\t\tel[i].classList.remove(\"parent\");\n\t\t\tel[i].classList.remove(\"hide\");\n\t\t\tzoom_reset(el[i]);\n\t\t\tif(!dont_update_text) update_text(el[i]);\n\t\t}\n\t\tsearch();\n\t}\n\tfunction clearzoom() {\n\t\tunzoom();\n\n\t\t// remove zoom state\n\t\tvar params = get_params();\n\t\tif (params.x) delete params.x;\n\t\tif (params.y) delete params.y;\n\t\thistory.replaceState(null, null, parse_params(params));\n\t}\n\n\t// search\n\tfunction toggle_ignorecase() {\n\t\tignorecase = !ignorecase;\n\t\tif (ignorecase) {\n\t\t\tignorecaseBtn.classList.add(\"show\");\n\t\t} else {\n\t\t\tignorecaseBtn.classList.remove(\"show\");\n\t\t}\n\t\treset_search();\n\t\tsearch();\n\t}\n\tfunction reset_search() {\n\t\tvar el = document.querySelectorAll(\"#frames rect\");\n\t\tfor (var i = 0; i < el.length; i++) {\n\t\t\torig_load(el[i], \"fill\")\n\t\t}\n\t\tvar params = get_params();\n\t\tdelete params.s;\n\t\thistory.replaceState(null, null, parse_params(params));\n\t}\n\tfunction search_prompt() {\n\t\tif (!searching) {\n\t\t\tvar term = prompt(\"Enter a search term (regexp \" +\n\t\t\t    \"allowed, eg: ^ext4_)\"\n\t\t\t    + (ignorecase ? \", ignoring case\" : \"\")\n\t\t\t    + \"\\\\nPress Ctrl-i to toggle case sensitivity\", \"\");\n\t\t\tif (term != null) search(term);\n\t\t} else {\n\t\t\treset_search();\n\t\t\tsearching = 0;\n\t\t\tcurrentSearchTerm = null;\n\t\t\tsearchbtn.classList.remove(\"show\");\n\t\t\tsearchbtn.firstChild.nodeValue = \"Search\"\n\t\t\tmatchedtxt.classList.add(\"hide\");\n\t\t\tmatchedtxt.firstChild.nodeValue = \"\"\n\t\t}\n\t}\n\tfunction search(term) {\n\t\tif (term) currentSearchTerm = term;\n\t\tif (currentSearchTerm === null) return;\n\n\t\tvar re = new RegExp(currentSearchTerm, ignorecase ? 'i' : '');\n\t\tvar el = document.getElementById(\"frames\").children;\n\t\tvar matches = new Object();\n\t\tvar maxwidth = 0;\n\t\tfor (var i = 0; i < el.length; i++) {\n\t\t\tvar e = el[i];\n\t\t\tvar func = g_to_func(e);\n\t\t\tvar rect = find_child(e, \"rect\");\n\t\t\tif (func == null || rect == null)\n\t\t\t\tcontinue;\n\n\t\t\t// Save max width. Only works as we have a root frame\n\t\t\tvar w = parseFloat(rect.attributes.width.value);\n\t\t\tif (w > maxwidth)\n\t\t\t\tmaxwidth = w;\n\n\t\t\tif (func.match(re)) {\n\t\t\t\t// highlight\n\t\t\t\tvar x = parseFloat(rect.attributes.x.value);\n\t\t\t\torig_save(rect, \"fill\");\n\t\t\t\trect.attributes.fill.value = \"$searchcolor\";\n\n\t\t\t\t// remember matches\n\t\t\t\tif (matches[x] == undefined) {\n\t\t\t\t\tmatches[x] = w;\n\t\t\t\t} else {\n\t\t\t\t\tif (w > matches[x]) {\n\t\t\t\t\t\t// overwrite with parent\n\t\t\t\t\t\tmatches[x] = w;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tsearching = 1;\n\t\t\t}\n\t\t}\n\t\tif (!searching)\n\t\t\treturn;\n\t\tvar params = get_params();\n\t\tparams.s = currentSearchTerm;\n\t\thistory.replaceState(null, null, parse_params(params));\n\n\t\tsearchbtn.classList.add(\"show\");\n\t\tsearchbtn.firstChild.nodeValue = \"Reset Search\";\n\n\t\t// calculate percent matched, excluding vertical overlap\n\t\tvar count = 0;\n\t\tvar lastx = -1;\n\t\tvar lastw = 0;\n\t\tvar keys = Array();\n\t\tfor (k in matches) {\n\t\t\tif (matches.hasOwnProperty(k))\n\t\t\t\tkeys.push(k);\n\t\t}\n\t\t// sort the matched frames by their x location\n\t\t// ascending, then width descending\n\t\tkeys.sort(function(a, b){\n\t\t\treturn a - b;\n\t\t});\n\t\t// Step through frames saving only the biggest bottom-up frames\n\t\t// thanks to the sort order. This relies on the tree property\n\t\t// where children are always smaller than their parents.\n\t\tvar fudge = 0.0001;\t// JavaScript floating point\n\t\tfor (var k in keys) {\n\t\t\tvar x = parseFloat(keys[k]);\n\t\t\tvar w = matches[keys[k]];\n\t\t\tif (x >= lastx + lastw - fudge) {\n\t\t\t\tcount += w;\n\t\t\t\tlastx = x;\n\t\t\t\tlastw = w;\n\t\t\t}\n\t\t}\n\t\t// display matched percent\n\t\tmatchedtxt.classList.remove(\"hide\");\n\t\tvar pct = 100 * count / maxwidth;\n\t\tif (pct != 100) pct = pct.toFixed(1)\n\t\tmatchedtxt.firstChild.nodeValue = \"Matched: \" + pct + \"%\";\n\t}\n]]>\n</script>\nINC\n$im->include($inc);\n$im->filledRectangle(0, 0, $imagewidth, $imageheight, 'url(#background)');\n$im->stringTTF(\"title\", int($imagewidth / 2), $fontsize * 2, $titletext);\n$im->stringTTF(\"subtitle\", int($imagewidth / 2), $fontsize * 4, $subtitletext) if $subtitletext ne \"\";\n$im->stringTTF(\"details\", $xpad, $imageheight - ($ypad2 / 2), \" \");\n$im->stringTTF(\"unzoom\", $xpad, $fontsize * 2, \"Reset Zoom\", 'class=\"hide\"');\n$im->stringTTF(\"search\", $imagewidth - $xpad - 100, $fontsize * 2, \"Search\");\n$im->stringTTF(\"ignorecase\", $imagewidth - $xpad - 16, $fontsize * 2, \"ic\");\n$im->stringTTF(\"matched\", $imagewidth - $xpad - 100, $imageheight - ($ypad2 / 2), \" \");\n\nif ($palette) {\n\tread_palette();\n}\n\n# draw frames\n$im->group_start({id => \"frames\"});\nwhile (my ($id, $node) = each %Node) {\n\tmy ($func, $depth, $etime) = split \";\", $id;\n\tmy $stime = $node->{stime};\n\tmy $delta = $node->{delta};\n\n\t$etime = $timemax if $func eq \"\" and $depth == 0;\n\n\tmy $x1 = $xpad + $stime * $widthpertime;\n\tmy $x2 = $xpad + $etime * $widthpertime;\n\tmy ($y1, $y2);\n\tunless ($inverted) {\n\t\t$y1 = $imageheight - $ypad2 - ($depth + 1) * $frameheight + $framepad;\n\t\t$y2 = $imageheight - $ypad2 - $depth * $frameheight;\n\t} else {\n\t\t$y1 = $ypad1 + $depth * $frameheight;\n\t\t$y2 = $ypad1 + ($depth + 1) * $frameheight - $framepad;\n\t}\n\n\t# Add commas per perlfaq5:\n\t# https://perldoc.perl.org/perlfaq5#How-can-I-output-my-numbers-with-commas-added?\n\tmy $samples = sprintf \"%.0f\", ($etime - $stime) * $factor;\n\t(my $samples_txt = $samples)\n\t\t=~ s/(^[-+]?\\d+?(?=(?>(?:\\d{3})+)(?!\\d))|\\G\\d{3}(?=\\d))/$1,/g;\n\n\tmy $info;\n\tif ($func eq \"\" and $depth == 0) {\n\t\t$info = \"all ($samples_txt $countname, 100%)\";\n\t} else {\n\t\tmy $pct = sprintf \"%.2f\", ((100 * $samples) / ($timemax * $factor));\n\t\tmy $escaped_func = $func;\n\t\t# clean up SVG breaking characters:\n\t\t$escaped_func =~ s/&/&amp;/g;\n\t\t$escaped_func =~ s/</&lt;/g;\n\t\t$escaped_func =~ s/>/&gt;/g;\n\t\t$escaped_func =~ s/\"/&quot;/g;\n\t\t$escaped_func =~ s/_\\[[kwij]\\]$//;\t# strip any annotation\n\t\tunless (defined $delta) {\n\t\t\t$info = \"$escaped_func ($samples_txt $countname, $pct%)\";\n\t\t} else {\n\t\t\tmy $d = $negate ? -$delta : $delta;\n\t\t\tmy $deltapct = sprintf \"%.2f\", ((100 * $d) / ($timemax * $factor));\n\t\t\t$deltapct = $d > 0 ? \"+$deltapct\" : $deltapct;\n\t\t\t$info = \"$escaped_func ($samples_txt $countname, $pct%; $deltapct%)\";\n\t\t}\n\t}\n\n\tmy $nameattr = { %{ $nameattr{$func}||{} } }; # shallow clone\n\t$nameattr->{title}       ||= $info;\n\t$im->group_start($nameattr);\n\n\tmy $color;\n\tif ($func eq \"--\") {\n\t\t$color = $vdgrey;\n\t} elsif ($func eq \"-\") {\n\t\t$color = $dgrey;\n\t} elsif (defined $delta) {\n\t\t$color = color_scale($delta, $maxdelta);\n\t} elsif ($palette) {\n\t\t$color = color_map($colors, $func);\n\t} else {\n\t\t$color = color($colors, $hash, $func);\n\t}\n\t$im->filledRectangle($x1, $y1, $x2, $y2, $color, 'rx=\"2\" ry=\"2\"');\n\n\tmy $chars = int( ($x2 - $x1) / ($fontsize * $fontwidth));\n\tmy $text = \"\";\n\tif ($chars >= 3) { # room for one char plus two dots\n\t\t$func =~ s/_\\[[kwij]\\]$//;\t# strip any annotation\n\t\t$text = substr $func, 0, $chars;\n\t\tsubstr($text, -2, 2) = \"..\" if $chars < length $func;\n\t\t$text =~ s/&/&amp;/g;\n\t\t$text =~ s/</&lt;/g;\n\t\t$text =~ s/>/&gt;/g;\n\t}\n\t$im->stringTTF(undef, $x1 + 3, 3 + ($y1 + $y2) / 2, $text);\n\n\t$im->group_end($nameattr);\n}\n$im->group_end();\n\nprint $im->svg;\n\nif ($palette) {\n\twrite_palette();\n}\n\n# vim: ts=8 sts=8 sw=8 noexpandtab\n"
  },
  {
    "path": "jmaps",
    "content": "#!/bin/bash\n#\n# jmaps - creates java /tmp/perf-PID.map symbol maps for all java processes.\n#\n# This is a helper script that finds all running \"java\" processes, then executes\n# perf-map-agent on them all, creating symbol map files in /tmp. These map files\n# are read by perf_events (aka \"perf\") when doing system profiles (specifically,\n# the \"report\" and \"script\" subcommands).\n#\n# USAGE: jmaps [-u]\n#\t\t-u\t# unfoldall: include inlined symbols\n#\n# My typical workflow is this:\n#\n# perf record -F 99 -a -g -- sleep 30; jmaps\n# perf script > out.stacks\n# ./stackcollapse-perf.pl out.stacks | ./flamegraph.pl --color=java --hash > out.stacks.svg\n#\n# The stackcollapse-perf.pl and flamegraph.pl programs come from:\n# https://github.com/brendangregg/FlameGraph\n#\n# REQUIREMENTS:\n# Tune two environment settings below.\n#\n# 13-Feb-2015\tBrendan Gregg\tCreated this.\n# 20-Feb-2017      \"      \"     Added -u for unfoldall.\n\nJAVA_HOME=${JAVA_HOME:-/usr/lib/jvm/java-8-oracle}\nAGENT_HOME=${AGENT_HOME:-/usr/lib/jvm/perf-map-agent}  # from https://github.com/jvm-profiling-tools/perf-map-agent\ndebug=0\n\nif [[ \"$USER\" != root ]]; then\n\techo \"ERROR: not root user? exiting...\"\n\texit\nfi\n\nif [[ ! -x $JAVA_HOME ]]; then\n\techo \"ERROR: JAVA_HOME not set correctly; edit $0 and fix\"\n\texit\nfi\n\nif [[ ! -x $AGENT_HOME ]]; then\n\techo \"ERROR: AGENT_HOME not set correctly; edit $0 and fix\"\n\texit\nfi\n\nif [[ \"$1\" == \"-u\" ]]; then\n\topts=unfoldall\nfi\n\n# figure out where the agent files are:\nAGENT_OUT=\"\"\nAGENT_JAR=\"\"\nif [[ -e $AGENT_HOME/out/attach-main.jar ]]; then\n\tAGENT_JAR=$AGENT_HOME/out/attach-main.jar\nelif [[ -e $AGENT_HOME/attach-main.jar ]]; then\n\tAGENT_JAR=$AGENT_HOME/attach-main.jar\nfi\nif [[ -e $AGENT_HOME/out/libperfmap.so ]]; then\n\tAGENT_OUT=$AGENT_HOME/out\nelif [[ -e $AGENT_HOME/libperfmap.so ]]; then\n\tAGENT_OUT=$AGENT_HOME\nfi\nif [[ \"$AGENT_OUT\" == \"\" || \"$AGENT_JAR\" == \"\" ]]; then\n\techo \"ERROR: Missing perf-map-agent files in $AGENT_HOME. Check installation.\"\n\texit\nfi\n\n# Fetch map for all \"java\" processes\necho \"Fetching maps for all java processes...\"\nfor pid in $(pgrep -x java); do\n\tmapfile=/tmp/perf-$pid.map\n\t[[ -e $mapfile ]] && rm $mapfile\n\n\tcmd=\"cd $AGENT_OUT; $JAVA_HOME/bin/java -Xms32m -Xmx128m -cp $AGENT_JAR:$JAVA_HOME/lib/tools.jar net.virtualvoid.perf.AttachOnce $pid $opts\"\n\t(( debug )) && echo $cmd\n\n\tuser=$(ps ho user -p $pid)\n\tgroup=$(ps ho group -p $pid)\n\tif [[ \"$user\" != root ]]; then\n\t\tif [[ \"$user\" == [0-9]* ]]; then\n\t\t\t# UID only, likely GID too, run sudo with #UID:\n\t\t\tcmd=\"sudo -u '#'$user -g '#'$group sh -c '$cmd'\"\n\t\telse\n\t\t\tcmd=\"sudo -u $user -g $group sh -c '$cmd'\"\n\t\tfi\n\tfi\n\n\techo \"Mapping PID $pid (user $user):\"\n\tif (( debug )); then\n\t\ttime eval $cmd\n\telse\n\t\teval $cmd\n\tfi\n\tif [[ -e \"$mapfile\" ]]; then\n\t\tchown root $mapfile\n\t\tchmod 666 $mapfile\n\telse\n\t\techo \"ERROR: $mapfile not created.\"\n\tfi\n\n\techo \"wc(1): $(wc $mapfile)\"\n\techo\ndone\n"
  },
  {
    "path": "pkgsplit-perf.pl",
    "content": "#!/usr/bin/perl -w\n#\n# pkgsplit-perf.pl\tSplit IP samples on package names \"/\", eg, Java.\n#\n# This is for the creation of Java package flame graphs. Example steps:\n#\n# perf record -F 199 -a -- sleep 30; ./jmaps\n# perf script | ./pkgsplit-perf.pl | ./flamegraph.pl > out.svg\n#\n# Note that stack traces are not sampled (no -g), as we split Java package\n# names into frames rather than stack frames.\n#\n# (jmaps is a helper script for automating perf-map-agent: Java symbol dumps.)\n#\n# The default output of \"perf script\" varies between kernel versions, so we'll\n# need to deal with that here. I could make people use the perf script option\n# to pick fields, so our input is static, but A) I prefer the simplicity of\n# just saying: run \"perf script\", and B) the option to choose fields itself\n# changed between kernel versions! -f became -F.\n#\n# Copyright 2017 Netflix, Inc.\n# Licensed under the Apache License, Version 2.0 (the \"License\")\n#\n# 20-Sep-2016\tBrendan Gregg\tCreated this.\n\nuse strict;\n\nmy $include_pname = 1;\t# include process names in stacks\nmy $include_pid = 0;\t# include process ID with process name\nmy $include_tid = 0;\t# include process & thread ID with process name\n\nwhile (<>) {\n\t# filter comments\n\tnext if /^#/;\n\n\t# filter idle events\n\tnext if /xen_hypercall_sched_op|cpu_idle|native_safe_halt/;\n\n\tmy ($pid, $tid, $pname);\n\n\t# Linux 3.13:\n\t#     java 13905 [000]  8048.096572: cpu-clock:      7fd781ac3053 Ljava/util/Arrays$ArrayList;::toArray (/tmp/perf-12149.map)\n\t#     java  8301 [050] 13527.392454: cycles:      7fa8a80d9bff Dictionary::find(int, unsigned int, Symbol*, ClassLoaderData*, Handle, Thread*) (/usr/lib/jvm/java-8-oracle-1.8.0.121/jre/lib/amd64/server/libjvm.so)\n\t#     java  4567/8603  [023] 13527.389886: cycles:      7fa863349895 Lcom/google/gson/JsonObject;::add (/tmp/perf-4567.map)\n\t#\n\t# Linux 4.8:\n\t#     java 30894 [007] 452884.077440:   10101010 cpu-clock:      7f0acc8eff67 Lsun/nio/ch/SocketChannelImpl;::read+0x27 (/tmp/perf-30849.map)\n\t#     bash 26858/26858 [006] 5440237.995639: cpu-clock:            433573 [unknown] (/bin/bash)\n\t#\n\tif (/^\\s+(\\S.+?)\\s+(\\d+)\\/*(\\d+)*\\s.*?:.*:/) {\n\t\t# parse process name and pid/tid\n\t\tif ($3) {\n\t\t\t($pid, $tid) = ($2, $3);\n\t\t} else {\n\t\t\t($pid, $tid) = (\"?\", $2);\n\t\t}\n\n\t\tif ($include_tid) {\n\t\t\t$pname = \"$1-$pid/$tid\";\n\t\t} elsif ($include_pid) {\n\t\t\t$pname = \"$1-$pid\";\n\t\t} else {\n\t\t\t$pname = $1;\n\t\t}\n\t\t$pname =~ tr/ /_/;\n\t} else {\n\t\t# not a match\n\t\tnext;\n\t}\n\n\t# parse rest of line\n\ts/^.*?:.*?:\\s+//;\n\ts/ \\(.*?\\)$//;\n\tchomp;\n\tmy ($addr, $func) = split(' ', $_, 2);\n\n\t# strip Java's leading \"L\"\n\t$func =~ s/^L//;\n\n\t# replace numbers with X\n\t$func =~ s/[0-9]/X/g;\n\n\t# colon delimitered\n\t$func =~ s:/:;:g;\n\tprint \"$pname;$func 1\\n\";\n}\n"
  },
  {
    "path": "range-perf.pl",
    "content": "#!/usr/bin/perl -w\n#\n# range-perf\tExtract a time range from Linux \"perf script\" output.\n#\n# USAGE EXAMPLE:\n#\n# perf record -F 100 -a -- sleep 60\n# perf script | ./perf2range.pl 10 20\t# range 10 to 20 seconds only\n# perf script | ./perf2range.pl 0 0.5\t# first half second only\n#\n# MAKING A SERIES OF FLAME GRAPHS:\n#\n# Let's say you had the output of \"perf script\" in a file, out.stacks01, which\n# was for a 180 second profile. The following command creates a series of\n# flame graphs for each 10 second interval:\n# \n# for i in `seq 0 10 170`; do cat out.stacks01 | \\\n#    ./perf2range.pl $i $((i + 10)) | ./stackcollapse-perf.pl | \\\n#    grep -v cpu_idle | ./flamegraph.pl --hash --color=java \\\n#    --title=\"range $i $((i + 10))\" > out.range_$i.svg; echo $i done; done\n#\n# In that example, I used \"--color=java\" for the Java palette, and excluded\n# the idle CPU task. Customize as needed.\n#\n# Copyright 2017 Netflix, Inc.\n# Licensed under the Apache License, Version 2.0 (the \"License\")\n#\n# 21-Feb-2017\tBrendan Gregg\tCreated this.\n\nuse strict;\nuse Getopt::Long;\nuse POSIX 'floor';\n\nsub usage {\n\tdie <<USAGE_END;\nUSAGE: $0 [options] min_seconds max_seconds\n\t--timeraw\t# use raw timestamps from perf\n\t--timezerosecs\t# time starts at 0 secs, but keep offset from perf\n\teg,\n\t$0 10 20\t# only include samples between 10 and 20 seconds\nUSAGE_END\n}\n\nmy $timeraw = 0;\nmy $timezerosecs = 0;\nGetOptions(\n\t'timeraw'       => \\$timeraw,\n\t'timezerosecs'  => \\$timezerosecs,\n) or usage();\n\nif (@ARGV < 2 || $ARGV[0] eq \"-h\" || $ARGV[0] eq \"--help\") {\n\tusage();\n\texit;\n}\nmy $begin = $ARGV[0];\nmy $end = $ARGV[1];\n\n#\n# Parsing\n#\n# IP only examples:\n# \n# java 52025 [026] 99161.926202: cycles: \n# java 14341 [016] 252732.474759: cycles:      7f36571947c0 nmethod::is_nmethod() const (/...\n# java 14514 [022] 28191.353083: cpu-clock:      7f92b4fdb7d4 Ljava_util_List$size$0;::call (/tmp/perf-11936.map)\n#      swapper     0 [002] 6035557.056977:   10101010 cpu-clock:  ffffffff810013aa xen_hypercall_sched_op+0xa (/lib/modules/4.9-virtual/build/vmlinux)\n#         bash 25370 603are 6036.991603:   10101010 cpu-clock:            4b931e [unknown] (/bin/bash)\n#         bash 25370/25370 6036036.799684: cpu-clock:            4b913b [unknown] (/bin/bash)\n# other combinations are possible.\n#\n# Stack examples (-g):\n#\n# swapper     0 [021] 28648.467059: cpu-clock: \n#\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n#\tffffffff8101cb2f default_idle ([kernel.kallsyms])\n#\tffffffff8101d406 arch_cpu_idle ([kernel.kallsyms])\n#\tffffffff810bf475 cpu_startup_entry ([kernel.kallsyms])\n#\tffffffff81010228 cpu_bringup_and_idle ([kernel.kallsyms])\n#\n# java 14375 [022] 28648.467079: cpu-clock: \n#\t    7f92bdd98965 Ljava/io/OutputStream;::write (/tmp/perf-11936.map)\n#\t    7f8808cae7a8 [unknown] ([unknown])\n#\n# swapper     0 [005]  5076.836336: cpu-clock: \n#\tffffffff81051586 native_safe_halt ([kernel.kallsyms])\n#\tffffffff8101db4f default_idle ([kernel.kallsyms])\n#\tffffffff8101e466 arch_cpu_idle ([kernel.kallsyms])\n#\tffffffff810c2b31 cpu_startup_entry ([kernel.kallsyms])\n#\tffffffff810427cd start_secondary ([kernel.kallsyms])\n#\n# swapper     0 [002] 6034779.719110:   10101010 cpu-clock: \n#       2013aa xen_hypercall_sched_op+0xfe20000a (/lib/modules/4.9-virtual/build/vmlinux)\n#       a72f0e default_idle+0xfe20001e (/lib/modules/4.9-virtual/build/vmlinux)\n#       2392bf arch_cpu_idle+0xfe20000f (/lib/modules/4.9-virtual/build/vmlinux)\n#       a73333 default_idle_call+0xfe200023 (/lib/modules/4.9-virtual/build/vmlinux)\n#       2c91a4 cpu_startup_entry+0xfe2001c4 (/lib/modules/4.9-virtual/build/vmlinux)\n#       22b64a cpu_bringup_and_idle+0xfe20002a (/lib/modules/4.9-virtual/build/vmlinux)\n#\n# bash 25370/25370 6035935.188539: cpu-clock: \n#                   b9218 [unknown] (/bin/bash)\n#                 2037fe8 [unknown] ([unknown])\n# other combinations are possible.\n#\n# This regexp matches the event line, and puts time in $1, and the event name\n# in $2:\n#\nmy $event_regexp = qr/ +([0-9\\.]+): *\\S* *(\\S+):/;\n\nmy $line;\nmy $start = 0;\nmy $ok = 0;\nmy $time;\n\nwhile (1) {\n\t$line = <STDIN>;\n\tlast unless defined $line;\n\tnext if $line =~ /^#/;\t\t# skip comments\n\n\tif ($line =~ $event_regexp) {\n\t\tmy ($ts, $event) = ($1, $2, $3);\n\t\t$start = $ts if $start == 0;\n\n\t\tif ($timezerosecs) {\n\t\t\t$time = $ts - floor($start);\n\t\t} elsif (!$timeraw) {\n\t\t\t$time = $ts - $start;\n\t\t} else {\n\t\t\t$time = $ts;\t# raw times\n\t\t}\n\n\t\t$ok = 1 if $time >= $begin;\n\t\t# assume samples are in time order:\n\t\texit if $time > $end;\n\t}\n\n\tprint $line if $ok;\n}\n"
  },
  {
    "path": "record-test.sh",
    "content": "#!/bin/bash\n#\n# record-test.sh - Overwrite flame graph test result files.\n#\n# See test.sh, which checks these resulting files.\n#\n# Currently only tests stackcollapse-perf.pl.\n\nset -v -x\n\n# ToDo: add some form of --inline, and --inline --context tests. These are\n# tricky since they use addr2line, whose output will vary based on the test\n# system's binaries and symbol tables.\nfor opt in pid tid kernel jit all addrs; do\n  for testfile in test/*.txt ; do\n    echo testing $testfile : $opt\n    outfile=${testfile#*/}\n    outfile=test/results/${outfile%.txt}\"-collapsed-${opt}.txt\"\n    ./stackcollapse-perf.pl --\"${opt}\" \"${testfile}\" 2> /dev/null > $outfile\n  done\ndone\n"
  },
  {
    "path": "stackcollapse-aix.pl",
    "content": "#!/usr/bin/perl -ws\n#\n# stackcollapse-aix  Collapse AIX /usr/bin/procstack backtraces\n#\n# Parse a list of backtraces as generated with the poor man's aix-perf.pl\n# profiler \n#\n\nuse strict;\n\nmy $process = \"\";\nmy $current = \"\";\nmy $previous_function = \"\";\n\nmy %stacks;\n\nwhile(<>) {\n  chomp;\n  if (m/^\\d+:/) {\n    if(!($current eq \"\")) {\n      $current = $process . \";\" . $current;\n      $stacks{$current} += 1;\n      $current = \"\";\n    }\n    m/^\\d+: ([^ ]*)/;\n    $process = $1;\n    $current = \"\";\n  }\n  elsif(m/^---------- tid# \\d+/){\n    if(!($current eq \"\")) {\n      $current = $process . \";\" . $current;\n      $stacks{$current} += 1;\n    }\n    $current = \"\";\n  }\n  elsif(m/^(0x[0-9abcdef]*) *([^ ]*) ([^ ]*) ([^ ]*)/) {\n    my $function = $2;\n    my $alt = $1;\n    $function=~s/\\(.*\\)?//;\n    if($function =~ /^\\[.*\\]$/) {\n      $function = $alt;\n    }\n    if ($current) {\n      $current = $function . \";\" . $current;\n    }\n    else {\n      $current = $function;\n    }\n  }\n}\n\nif(!($current eq \"\")) {\n  $current = $process . \";\" . $current;\n  $stacks{$current} += 1;\n  $current = \"\";\n  $process = \"\";\n}\n\nforeach my $k (sort { $a cmp $b } keys %stacks) {\n  print \"$k $stacks{$k}\\n\";\n}\n"
  },
  {
    "path": "stackcollapse-bpftrace.pl",
    "content": "#!/usr/bin/perl -w\n#\n# stackcollapse-bpftrace.pl\tcollapse bpftrace samples into single lines.\n#\n# USAGE ./stackcollapse-bpftrace.pl infile > outfile\n#\n# Example input:\n#\n# @[\n# _raw_spin_lock_bh+0\n# tcp_recvmsg+808\n# inet_recvmsg+81\n# sock_recvmsg+67\n# sock_read_iter+144\n# new_sync_read+228\n# __vfs_read+41\n# vfs_read+142\n# sys_read+85\n# do_syscall_64+115\n# entry_SYSCALL_64_after_hwframe+61\n# ]: 3\n#\n# Example output:\n#\n# entry_SYSCALL_64_after_hwframe+61;do_syscall_64+115;sys_read+85;vfs_read+142;__vfs_read+41;new_sync_read+228;sock_read_iter+144;sock_recvmsg+67;inet_recvmsg+81;tcp_recvmsg+808;_raw_spin_lock_bh+0 3\n#\n# Copyright 2018 Peter Sanford.  All rights reserved.\n#\n#  This program is free software; you can redistribute it and/or\n#  modify it under the terms of the GNU General Public License\n#  as published by the Free Software Foundation; either version 2\n#  of the License, or (at your option) any later version.\n#\n#  This program is distributed in the hope that it will be useful,\n#  but WITHOUT ANY WARRANTY; without even the implied warranty of\n#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n#  GNU General Public License for more details.\n#\n#  You should have received a copy of the GNU General Public License\n#  along with this program; if not, write to the Free Software Foundation,\n#  Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.\n#\n#  (http://www.gnu.org/copyleft/gpl.html)\n#\n\nuse strict;\n\nmy @stack;\nmy $in_stack = 0;\n\nforeach (<>) {\n  chomp;\n  if (!$in_stack) {\n    if (/^@\\[$/) {\n      $in_stack = 1;\n    } elsif (/^@\\[,\\s(.*)\\]: (\\d+)/) {\n      print $1 . \" $2\\n\";\n    }\n  } else {\n    if (m/^,?\\s?(.*)\\]: (\\d+)/) {\n      if (length $1) {\n        push(@stack, $1);\n      }\n      print join(';', reverse(@stack)) . \" $2\\n\";\n      $in_stack = 0;\n      @stack = ();\n    } else {\n      $_ =~ s/^\\s+//;\n      push(@stack, $_);\n    }\n  }\n}\n"
  },
  {
    "path": "stackcollapse-chrome-tracing.py",
    "content": "#!/usr/bin/python\n#\n# stackcolllapse-chrome-tracing.py\tcollapse Trace Event Format [1]\n#             callstack events into single lines.\n#\n# [1] https://github.com/catapult-project/catapult/wiki/Trace-Event-Format\n#\n# USAGE: ./stackcollapse-chrome-tracing.py input_json [input_json...] > outfile\n#\n# Example input:\n#\n# {\"traceEvents\":[\n#     {\"pid\":1,\"tid\":2,\"ts\":0,\"ph\":\"X\",\"name\":\"Foo\",\"dur\":50},\n#     {\"pid\":1,\"tid\":2,\"ts\":10,\"ph\":\"X\",\"name\":\"Bar\",\"dur\":30}\n# ]}\n#\n# Example output:\n#\n#  Foo 20.0\n#  Foo;Bar 30.0\n#\n# Input may contain many stack trace events from many processes/threads.\n#\n# CDDL HEADER START\n#\n# The contents of this file are subject to the terms of the\n# Common Development and Distribution License (the \"License\").\n# You may not use this file except in compliance with the License.\n#\n# You can obtain a copy of the license at docs/cddl1.txt or\n# http://opensource.org/licenses/CDDL-1.0.\n# See the License for the specific language governing permissions\n# and limitations under the License.\n#\n# When distributing Covered Code, include this CDDL HEADER in each\n# file and include the License file at docs/cddl1.txt.\n# If applicable, add the following below this CDDL HEADER, with the\n# fields enclosed by brackets \"[]\" replaced with your own identifying\n# information: Portions Copyright [yyyy] [name of copyright owner]\n#\n# CDDL HEADER END\n#\n# 4-Jan-2018\tMarcin Kolny\tCreated this.\nimport argparse\nimport json\n\nstack_identifiers = {}\n\n\nclass Event:\n    def __init__(self, label, timestamp, dur):\n        self.label = label\n        self.timestamp = timestamp\n        self.duration = dur\n        self.total_duration = dur\n\n    def get_stop_timestamp(self):\n        return self.timestamp + self.duration\n\n\ndef cantor_pairing(a, b):\n    s = a + b\n    return s * (s + 1) / 2 + b\n\n\ndef get_trace_events(trace_file, events_dict):\n    json_data = json.load(trace_file)\n\n    for entry in json_data['traceEvents']:\n        if entry['ph'] == 'X':\n            cantor_val = cantor_pairing(int(entry['tid']), int(entry['pid']))\n            if 'dur' not in entry:\n                continue\n            if cantor_val not in events_dict:\n                events_dict[cantor_val] = []\n            events_dict[cantor_val].append(Event(entry['name'], float(entry['ts']), float(entry['dur'])))\n\n\ndef load_events(trace_files):\n    events = {}\n\n    for trace_file in trace_files:\n        get_trace_events(trace_file, events)\n\n    for key in events:\n        events[key].sort(key=lambda x: x.timestamp)\n\n    return events\n\n\ndef save_stack(stack):\n    first = True\n    event = None\n    identifier = ''\n\n    for event in stack:\n        if first:\n            first = False\n        else:\n            identifier += ';'\n        identifier += event.label\n\n    if not event:\n        return\n\n    if identifier in stack_identifiers:\n        stack_identifiers[identifier] += event.total_duration\n    else:\n        stack_identifiers[identifier] = event.total_duration\n\n\ndef load_stack_identifiers(events):\n    event_stack = []\n\n    for e in events:\n        if not event_stack:\n            event_stack.append(e)\n        else:\n            while event_stack and event_stack[-1].get_stop_timestamp() <= e.timestamp:\n                save_stack(event_stack)\n                event_stack.pop()\n\n            if event_stack:\n                event_stack[-1].total_duration -= e.duration\n\n            event_stack.append(e)\n\n    while event_stack:\n        save_stack(event_stack)\n        event_stack.pop()\n\n\nparser = argparse.ArgumentParser()\nparser.add_argument('input_file', nargs='+',\n                    type=argparse.FileType('r'),\n                    help='Chrome Tracing input files')\nargs = parser.parse_args()\n\nall_events = load_events(args.input_file)\nfor tid_pid in all_events:\n    load_stack_identifiers(all_events[tid_pid])\n\nfor identifiers, duration in stack_identifiers.items():\n    print(identifiers + ' ' + str(duration))\n"
  },
  {
    "path": "stackcollapse-elfutils.pl",
    "content": "#!/usr/bin/perl -w\n#\n# stackcollapse-elfutils  Collapse elfutils stack (eu-stack) backtraces\n#\n# Parse a list of elfutils backtraces as generated with the poor man's\n# profiler [1]:\n#\n#   for x in $(seq 1 \"$nsamples\"); do\n#      eu-stack -p \"$pid\" \"$@\"\n#      sleep \"$sleeptime\"\n#   done\n#\n# [1] http://poormansprofiler.org/\n#\n# Copyright 2014 Gabriel Corona. All rights reserved.\n#\n# CDDL HEADER START\n#\n# The contents of this file are subject to the terms of the\n# Common Development and Distribution License (the \"License\").\n# You may not use this file except in compliance with the License.\n#\n# You can obtain a copy of the license at docs/cddl1.txt or\n# http://opensource.org/licenses/CDDL-1.0.\n# See the License for the specific language governing permissions\n# and limitations under the License.\n#\n# When distributing Covered Code, include this CDDL HEADER in each\n# file and include the License file at docs/cddl1.txt.\n# If applicable, add the following below this CDDL HEADER, with the\n# fields enclosed by brackets \"[]\" replaced with your own identifying\n# information: Portions Copyright [yyyy] [name of copyright owner]\n#\n# CDDL HEADER END\n\nuse strict;\nuse Getopt::Long;\n\nmy $with_pid = 0;\nmy $with_tid = 0;\n\nGetOptions('pid' => \\$with_pid,\n           'tid' => \\$with_tid)\nor die <<USAGE_END;\nUSAGE: $0 [options] infile > outfile\\n\n        --pid           # include PID\n        --tid           # include TID\nUSAGE_END\n\nmy $pid = \"\";\nmy $tid = \"\";\nmy $current = \"\";\nmy $previous_function = \"\";\n\nmy %stacks;\n\nsub add_current {\n  if(!($current eq \"\")) {\n    my $entry;\n    if ($with_tid) {\n      $current = \"TID=$tid;$current\";\n    }\n    if ($with_pid) {\n      $current = \"PID=$pid;$current\";\n    }\n    $stacks{$current} += 1;\n    $current = \"\";\n  }\n}\n\nwhile(<>) {\n  chomp;\n  if (m/^PID ([0-9]*)/) {\n    add_current();\n    $pid = $1;\n  }\n  elsif(m/^TID ([0-9]*)/) {\n    add_current();\n    $tid = $1;\n  } elsif(m/^#[0-9]* *0x[0-9a-f]* (.*)/) {\n    if ($current eq \"\") {\n      $current = $1;\n    } else {\n      $current = \"$1;$current\";\n    }\n  } elsif(m/^#[0-9]* *0x[0-9a-f]*/) {\n    if ($current eq \"\") {\n      $current = \"[unknown]\";\n    } else {\n      $current = \"[unknown];$current\";\n    }\n  }\n}\nadd_current();\n\nforeach my $k (sort { $a cmp $b } keys %stacks) {\n  print \"$k $stacks{$k}\\n\";\n}\n"
  },
  {
    "path": "stackcollapse-faulthandler.pl",
    "content": "#!/usr/bin/perl -ws\n#\n# stackcollapse-faulthandler  Collapse Python faulthandler backtraces\n#\n# Parse a list of Python faulthandler backtraces as generated with\n# faulthandler.dump_traceback_later.\n#\n# Copyright 2014 Gabriel Corona. All rights reserved.\n# Copyright 2017 Jonathan Kolb. All rights reserved.\n#\n# CDDL HEADER START\n#\n# The contents of this file are subject to the terms of the\n# Common Development and Distribution License (the \"License\").\n# You may not use this file except in compliance with the License.\n#\n# You can obtain a copy of the license at docs/cddl1.txt or\n# http://opensource.org/licenses/CDDL-1.0.\n# See the License for the specific language governing permissions\n# and limitations under the License.\n#\n# When distributing Covered Code, include this CDDL HEADER in each\n# file and include the License file at docs/cddl1.txt.\n# If applicable, add the following below this CDDL HEADER, with the\n# fields enclosed by brackets \"[]\" replaced with your own identifying\n# information: Portions Copyright [yyyy] [name of copyright owner]\n#\n# CDDL HEADER END\n\nuse strict;\n\nmy $current = \"\";\n\nmy %stacks;\n\nwhile(<>) {\n  chomp;\n  if (m/^Thread/) {\n    $current=\"\"\n  }\n  elsif(m/^  File \"([^\"]*)\", line ([0-9]*) in (.*)/) {\n    my $function = $1 . \":\" . $2 . \":\" . $3;\n    if ($current eq \"\") {\n      $current = $function;\n    } else {\n      $current = $function . \";\" . $current;\n    }\n  } elsif(!($current eq \"\")) {\n    $stacks{$current} += 1;\n    $current = \"\";\n  }\n}\n\nif(!($current eq \"\")) {\n  $stacks{$current} += 1;\n  $current = \"\";\n}\n\nforeach my $k (sort { $a cmp $b } keys %stacks) {\n  print \"$k $stacks{$k}\\n\";\n}\n"
  },
  {
    "path": "stackcollapse-gdb.pl",
    "content": "#!/usr/bin/perl -ws\n#\n# stackcollapse-gdb  Collapse GDB backtraces\n#\n# Parse a list of GDB backtraces as generated with the poor man's\n# profiler [1]:\n#\n#   for x in $(seq 1 500); do\n#      gdb -ex \"set pagination 0\" -ex \"thread apply all bt\" -batch -p $pid 2> /dev/null\n#      sleep 0.01\n#    done\n#\n# [1] http://poormansprofiler.org/\n#\n# Copyright 2014 Gabriel Corona. All rights reserved.\n#\n# CDDL HEADER START\n#\n# The contents of this file are subject to the terms of the\n# Common Development and Distribution License (the \"License\").\n# You may not use this file except in compliance with the License.\n#\n# You can obtain a copy of the license at docs/cddl1.txt or\n# http://opensource.org/licenses/CDDL-1.0.\n# See the License for the specific language governing permissions\n# and limitations under the License.\n#\n# When distributing Covered Code, include this CDDL HEADER in each\n# file and include the License file at docs/cddl1.txt.\n# If applicable, add the following below this CDDL HEADER, with the\n# fields enclosed by brackets \"[]\" replaced with your own identifying\n# information: Portions Copyright [yyyy] [name of copyright owner]\n#\n# CDDL HEADER END\n\nuse strict;\n\nmy $current = \"\";\nmy $previous_function = \"\";\n\nmy %stacks;\n\nwhile(<>) {\n  chomp;\n  if (m/^Thread/) {\n    $current=\"\"\n  }\n  elsif(m/^#[0-9]* *([^ ]*) ([^ ]*) ([^ ]*) ([^ ]*)/) {\n    my $function = $3;\n    my $alt = $1;\n    if(not($1 =~ /0x[a-zA-Z0-9]*/)) {\n      $function = $alt;\n    }\n    if ($current eq \"\") {\n      $current = $function;\n    } else {\n      $current = $function . \";\" . $current;\n    }\n  } elsif(!($current eq \"\")) {\n    $stacks{$current} += 1;\n    $current = \"\";\n  }\n}\n\nif(!($current eq \"\")) {\n  $stacks{$current} += 1;\n  $current = \"\";\n}\n\nforeach my $k (sort { $a cmp $b } keys %stacks) {\n  print \"$k $stacks{$k}\\n\";\n}\n"
  },
  {
    "path": "stackcollapse-go.pl",
    "content": "#!/usr/bin/perl -w\n#\n# stackcollapse-go.pl  collapse golang samples into single lines.\n#\n# Parses golang smaples generated by \"go tool pprof\" and outputs stacks as\n# single lines, with methods separated by semicolons, and then a space and an\n# occurrence count. For use with flamegraph.pl.\n#\n# USAGE: ./stackcollapse-go.pl infile > outfile\n#\n# Example Input:\n#   ...\n#   Samples:\n#   samples/count cpu/nanoseconds\n#        1   10000000: 1 2 \n#        2   10000000: 3 2 \n#        1   10000000: 4 2 \n#        ...\n#   Locations\n#        1: 0x58b265 scanblock :0 s=0\n#        2: 0x599530 GC :0 s=0\n#        3: 0x58a999 flushptrbuf :0 s=0\n#        4: 0x58d6a8 runtime.MSpan_Sweep :0 s=0\n#        ...\n#   Mappings\n#        ...\n#\n# Example Output:\n# \n#   GC;flushptrbuf 2\n#   GC;runtime.MSpan_Sweep 1\n#   GC;scanblock 1\n#\n# Input may contain many stacks as generated from go tool pprof:\n#\n#   go tool pprof -seconds=60 -raw -output=a.pprof http://$ADDR/debug/pprof/profile\n#\n# For format of text profile, See golang/src/internal/pprof/profile/profile.go\n#\n# Copyright 2017 Sijie Yang (yangsijie@baidu.com).  All rights reserved.\n#\n#  This program is free software; you can redistribute it and/or\n#  modify it under the terms of the GNU General Public License\n#  as published by the Free Software Foundation; either version 2\n#  of the License, or (at your option) any later version.\n#\n#  This program is distributed in the hope that it will be useful,\n#  but WITHOUT ANY WARRANTY; without even the implied warranty of\n#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n#  GNU General Public License for more details.\n#\n#  You should have received a copy of the GNU General Public License\n#  along with this program; if not, write to the Free Software Foundation,\n#  Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.\n#\n#  (http://www.gnu.org/copyleft/gpl.html)\n#\n# 16-Jan-2017   Sijie Yang   Created this.\n\nuse strict;\n\nuse Getopt::Long;\n\n# tunables\nmy $help = 0;\n\nsub usage {\n\tdie <<USAGE_END;\nUSAGE: $0 infile > outfile\\n\nUSAGE_END\n}\n\nGetOptions(\n\t'help' => \\$help,\n) or usage();\n$help && usage();\n\n# internals\nmy $state = \"ignore\";\nmy %stacks;\nmy %frames;\nmy %collapsed;\n\nsub remember_stack {\n\tmy ($stack, $count) = @_;\n\t$stacks{$stack} += $count;\n}\n\n#\n# Output stack string in required format. For example, for the following samples,\n# format_statck() would return GC;runtime.MSpan_Sweep for stack \"4 2\"\n#\n#   Locations\n#        1: 0x58b265 scanblock :0 s=0\n#        2: 0x599530 GC :0 s=0\n#        3: 0x58a999 flushptrbuf :0 s=0\n#        4: 0x58d6a8 runtime.MSpan_Sweep :0 s=0\n#\nsub format_statck {\n\tmy ($stack) = @_;\n\tmy @loc_list = split(/ /, $stack);\n\n\tfor (my $i=0; $i<=$#loc_list; $i++) {\n\t\tmy $loc_name = $frames{$loc_list[$i]};\n\t\t$loc_list[$i] = $loc_name if ($loc_name);\n\t}\n\treturn join(\";\", reverse(@loc_list));\n}\n\nforeach (<>) {\n\tnext if m/^#/;\n\tchomp;\n\n\tif ($state eq \"ignore\") {\n\t\tif (/Samples:/) {\n\t\t$state = \"sample\";\n\t\t\tnext;\n\t\t}\n\n\t} elsif ($state eq \"sample\") {\n\t\tif (/^\\s*([0-9]+)\\s*[0-9]+: ([0-9 ]+)/) {\n\t\t\tmy $samples = $1;\n\t\t\tmy $stack = $2;\n\t\t\tremember_stack($stack, $samples);\n\t\t} elsif (/Locations/) {\n\t\t\t$state = \"location\";\n\t\t\tnext;\n\t\t}\n\n\t} elsif ($state eq \"location\") {\n\t\tif (/^\\s*([0-9]*): 0x[0-9a-f]+ (M=[0-9]+ )?([^ ]+) .*/) {\n\t\t\tmy $loc_id = $1;\n\t\t\tmy $loc_name = $3;\n\t\t\t$frames{$loc_id} = $loc_name;\n\t\t} elsif (/Mappings/) {\n\t\t\t$state = \"mapping\";\n\t\t\tlast;\n\t\t}\n\t}\n}\n\nforeach my $k (keys %stacks) {\n\tmy $stack = format_statck($k);\n\tmy $count = $stacks{$k};\n\t$collapsed{$stack} += $count;\n}\n\nforeach my $k (sort { $a cmp $b } keys %collapsed) {\n\tprint \"$k $collapsed{$k}\\n\";\n}\n"
  },
  {
    "path": "stackcollapse-ibmjava.pl",
    "content": "#!/usr/bin/perl -w\n#\n# stackcollapse-ibmjava.pl\tcollapse jstack samples into single lines.\n#\n# Parses Java stacks generated by IBM Java with methods separated by semicolons, \n# and then a space and an occurrence count.\n#\n# USAGE: ./stackcollapse-ibmjava.pl infile > outfile\n#\n# Example input:\n#\n#  NULL           \n#  1XMTHDINFO     Thread Details\n#  NULL           \n#  NULL\n#  3XMTHREADINFO      \"Default Executor-thread-149164\" J9VMThread:0x0000000008132B00, j9thread_t:0x000000001A810B90, java/lang/Thread:0x0000000712BE8E48, state:R, prio=5\n#  3XMJAVALTHREAD            (java/lang/Thread getId:0x3493E, isDaemon:true)\n#  3XMTHREADINFO1            (native thread ID:0x3158, native priority:0x5, native policy:UNKNOWN, vmstate:R, vm thread flags:0x00000001)\n#  3XMCPUTIME               CPU usage total: 0.421875000 secs, user: 0.343750000 secs, system: 0.078125000 secs, current category=\"Application\"\n#  3XMHEAPALLOC             Heap bytes allocated since last GC cycle=0 (0x0)\n#  3XMTHREADINFO3           Java callstack:\n#  4XESTACKTRACE                at java/net/SocketInputStream.socketRead0(Native Method)\n#  4XESTACKTRACE                at java/net/SocketInputStream.socketRead(SocketInputStream.java:127(Compiled Code))\n#  4XESTACKTRACE                at java/net/SocketInputStream.read(SocketInputStream.java:182(Compiled Code))\n#  4XESTACKTRACE                at java/net/SocketInputStream.read(SocketInputStream.java:152(Compiled Code))\n#  4XESTACKTRACE                at java/io/FilterInputStream.read(FilterInputStream.java:144(Compiled Code))\n#  ...\n#  4XESTACKTRACE                at java/lang/Thread.run(Thread.java:785(Compiled Code))\n#\n# Example output:\n#\n#  Default Executor-thread-149164;java/lang/Thread.run;java/net/SocketInputStream/read;java/net/SocketInputStream.socketRead0 1\n#\n#\n# Copyright 2014 Federico Juinio.  All rights reserved.\n#\n#  This program is free software; you can redistribute it and/or\n#  modify it under the terms of the GNU General Public License\n#  as published by the Free Software Foundation; either version 2\n#  of the License, or (at your option) any later version.\n#\n#  This program is distributed in the hope that it will be useful,\n#  but WITHOUT ANY WARRANTY; without even the implied warranty of\n#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n#  GNU General Public License for more details.\n#\n#  You should have received a copy of the GNU General Public License\n#  along with this program; if not, write to the Free Software Foundation,\n#  Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.\n#\n#  (http://www.gnu.org/copyleft/gpl.html)\n#\n# 23-Aug-2023   Federico Juinio created this based from stackcollapse-jstack.pl\n\nuse strict;\n\nuse Getopt::Long;\n\n# tunables\nmy $include_tname = 1;\t\t# include thread names in stacks\nmy $include_tid = 0;\t\t# include thread IDs in stacks\nmy $shorten_pkgs = 0;\t\t# shorten package names\nmy $help = 0;\n\nsub usage {\n\tdie <<USAGE_END;\nUSAGE: $0 [options] infile > outfile\\n\n\t--include-tname\n\t--no-include-tname # include/omit thread names in stacks (default: include)\n\t--include-tid\n\t--no-include-tid   # include/omit thread IDs in stacks (default: omit)\n\t--shorten-pkgs\n\t--no-shorten-pkgs  # (don't) shorten package names (default: don't shorten)\n\n\teg,\n\t$0 --no-include-tname stacks.txt > collapsed.txt\nUSAGE_END\n}\n\nGetOptions(\n\t'include-tname!'  => \\$include_tname,\n\t'include-tid!'    => \\$include_tid,\n\t'shorten-pkgs!'   => \\$shorten_pkgs,\n\t'help'            => \\$help,\n) or usage();\n$help && usage();\n\n\n# internals\nmy %collapsed;\n\nsub remember_stack {\n\tmy ($stack, $count) = @_;\n\t$collapsed{$stack} += $count;\n}\n\nmy @stack;\nmy $tname;\nmy $state = \"?\";\n\nforeach (<>) {\n\tnext if m/^#/;\n\tchomp;\n\n\tif (m/^3XMTHREADINFO3           Native callstack:/) {\n\t\t# save stack\n\t\tif (defined $tname) { unshift @stack, $tname; }\n\t\tremember_stack(join(\";\", @stack), 1) if @stack;\n\t\tundef @stack;\n\t\tundef $tname;\n\t\t$state = \"?\";\n\t\tnext;\n\t}\n\n\t# look for thread header line and parse thread name and state\n\tif (/^3XMTHREADINFO      \"([^\"]*).* state:(.*), /) {\n\t\tmy $name = $1;\n\t\tif ($include_tname) {\n\t\t\t$tname = $name;\n\t\t}\n\t\t$state = $2;\n\t# special handling for \"Anonymous native threads\"\n\t} elsif (/3XMTHREADINFO      Anonymous native thread/) {\n\t\t$tname = \"Anonymous native thread\";\n\t# look for thread id\n\t} elsif (/^3XMTHREADINFO1            \\(native thread ID:([^ ]*), native priority/) {\n\t\tif ($include_tname && $include_tid) {\n\t\t\t$tname = $tname . \"-\" . $1\n\t\t}\n\t# collect stack frames\n\t} elsif (/^4XESTACKTRACE                at ([^\\(]*)/) {\n\t\tmy $func = $1;\n\t\tif ($shorten_pkgs) {\n\t\t\tmy ($pkgs, $clsFunc) = ( $func =~ m/(.*\\.)([^.]+\\.[^.]+)$/ );\n\t\t\t$pkgs =~ s/(\\w)\\w*/$1/g;\n\t\t\t$func = $pkgs . $clsFunc;\n\t\t}\n\t\tunshift @stack, $func;\n\n\t}\n}\n\nforeach my $k (sort { $a cmp $b } keys %collapsed) {\n\tprint \"$k $collapsed{$k}\\n\";\n}\n"
  },
  {
    "path": "stackcollapse-instruments.pl",
    "content": "#!/usr/bin/perl -w\n#\n# stackcollapse-instruments.pl\n#\n# Parses a file containing a call tree as produced by XCode Instruments\n# (Edit > Deep Copy) and produces output suitable for flamegraph.pl.\n#\n# USAGE: ./stackcollapse-instruments.pl infile > outfile\n\nuse strict;\n\nmy @stack = ();\n\n<>;\nforeach (<>) {\n\tchomp;\n\t/\\d+\\.\\d+ (?:min|s|ms)\\s+\\d+\\.\\d+%\\s+(\\d+(?:\\.\\d+)?) (min|s|ms)\\t \\t(\\s*)(.+)/ or die;\n\tmy $func = $4;\n\tmy $depth = length ($3);\n\t$stack [$depth] = $4;\n\tforeach my $i (0 .. $depth - 1) {\n\t\tprint $stack [$i];\n\t\tprint \";\";\n\t}\n\n\tmy $time = 0 + $1;\n\tif ($2 eq \"min\") {\n\t\t$time *= 60*1000;\n\t} elsif ($2 eq \"s\") {\n\t\t$time *= 1000;\n\t}\n\n\tprintf(\"%s %.0f\\n\", $func, $time);\n}\n"
  },
  {
    "path": "stackcollapse-java-exceptions.pl",
    "content": "#!/usr/bin/perl -w\n#\n# stackcolllapse-java-exceptions.pl\tcollapse java exceptions (found in logs) into single lines.\n#\n# Parses Java error stacks found in a log file and outputs them as\n# single lines, with methods separated by semicolons, and then a space and an\n# occurrence count. Inspired by stackcollapse-jstack.pl except that it does\n# not act as a performance profiler.\n#\n# It can be useful if a Java process dumps a lot of different stacks in its logs\n# and you want to quickly identify the biggest culprits.\n#\n# USAGE: ./stackcollapse-java-exceptions.pl infile > outfile\n#\n# Copyright 2018 Paul de Verdiere. All rights reserved.\n\nuse strict;\nuse Getopt::Long;\n\n# tunables\nmy $shorten_pkgs = 0;\t\t# shorten package names\nmy $no_pkgs = 0;\t\t    # really shorten package names!!\nmy $help = 0;\n\nsub usage {\n\tdie <<USAGE_END;\nUSAGE: $0 [options] infile > outfile\\n\n\t--shorten-pkgs : shorten package names\n  --no-pkgs      : suppress package names (makes SVG much more readable)\n\nUSAGE_END\n}\n\nGetOptions(\n\t'shorten-pkgs!'   => \\$shorten_pkgs,\n\t'no-pkgs!'        => \\$no_pkgs,\n\t'help'            => \\$help,\n) or usage();\n$help && usage();\n\nmy %collapsed;\n\nsub remember_stack {\n\tmy ($stack, $count) = @_;\n\t$collapsed{$stack} += $count;\n}\n\nmy @stack;\n\nforeach (<>) {\n\tchomp;\n\n  if (/^\\s*at ([^\\(]*)/) {\n\t\tmy $func = $1;\n\t\tif ($shorten_pkgs || $no_pkgs) {\n\t\t\tmy ($pkgs, $clsFunc) = ( $func =~ m/(.*\\.)([^.]+\\.[^.]+)$/ );\n\t\t\t$pkgs =~ s/(\\w)\\w*/$1/g;\n      $func = $no_pkgs ? $clsFunc: $pkgs . $clsFunc;\n\t\t}\n\t\tunshift @stack, $func;\n\t} elsif (@stack ) {\n\t\tnext if m/.*waiting on .*/;\n\t\tremember_stack(join(\";\", @stack), 1) if @stack;\n\t\tundef @stack;\n  }\n}\n\nremember_stack(join(\";\", @stack), 1) if @stack;\n\nforeach my $k (sort { $a cmp $b } keys %collapsed) {\n\tprint \"$k $collapsed{$k}\\n\";\n}\n"
  },
  {
    "path": "stackcollapse-jstack.pl",
    "content": "#!/usr/bin/perl -w\n#\n# stackcollapse-jstack.pl\tcollapse jstack samples into single lines.\n#\n# Parses Java stacks generated by jstack(1) and outputs RUNNABLE stacks as\n# single lines, with methods separated by semicolons, and then a space and an\n# occurrence count. This also filters some other \"RUNNABLE\" states that we\n# know are probably not running, such as epollWait. For use with flamegraph.pl.\n#\n# You want this to process the output of at least 100 jstack(1)s. ie, run it\n# 100 times with a sleep interval, and append to a file. This is really a poor\n# man's Java profiler, due to the overheads of jstack(1), and how it isn't\n# capturing stacks asynchronously. For a better profiler, see:\n# http://www.brendangregg.com/blog/2014-06-12/java-flame-graphs.html\n#\n# USAGE: ./stackcollapse-jstack.pl infile > outfile\n#\n# Example input:\n#\n# \"MyProg\" #273 daemon prio=9 os_prio=0 tid=0x00007f273c038800 nid=0xe3c runnable [0x00007f28a30f2000]\n#    java.lang.Thread.State: RUNNABLE\n#        at java.net.SocketInputStream.socketRead0(Native Method)\n#        at java.net.SocketInputStream.read(SocketInputStream.java:121)\n#        ...\n#        at java.lang.Thread.run(Thread.java:744)\n#\n# Example output:\n#\n#  MyProg;java.lang.Thread.run;java.net.SocketInputStream.read;java.net.SocketInputStream.socketRead0 1\n#\n# Input may be created and processed using:\n#\n#  i=0; while (( i++ < 200 )); do jstack PID >> out.jstacks; sleep 10; done\n#  cat out.jstacks | ./stackcollapse-jstack.pl > out.stacks-folded\n#\n# WARNING: jstack(1) incurs overheads. Test before use, or use a real profiler.\n#\n# Copyright 2014 Brendan Gregg.  All rights reserved.\n#\n#  This program is free software; you can redistribute it and/or\n#  modify it under the terms of the GNU General Public License\n#  as published by the Free Software Foundation; either version 2\n#  of the License, or (at your option) any later version.\n#\n#  This program is distributed in the hope that it will be useful,\n#  but WITHOUT ANY WARRANTY; without even the implied warranty of\n#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n#  GNU General Public License for more details.\n#\n#  You should have received a copy of the GNU General Public License\n#  along with this program; if not, write to the Free Software Foundation,\n#  Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.\n#\n#  (http://www.gnu.org/copyleft/gpl.html)\n#\n# 14-Sep-2014\tBrendan Gregg\tCreated this.\n\nuse strict;\n\nuse Getopt::Long;\n\n# tunables\nmy $include_tname = 1;\t\t# include thread names in stacks\nmy $include_tid = 0;\t\t# include thread IDs in stacks\nmy $shorten_pkgs = 0;\t\t# shorten package names\nmy $help = 0;\n\nsub usage {\n\tdie <<USAGE_END;\nUSAGE: $0 [options] infile > outfile\\n\n\t--include-tname\n\t--no-include-tname # include/omit thread names in stacks (default: include)\n\t--include-tid\n\t--no-include-tid   # include/omit thread IDs in stacks (default: omit)\n\t--shorten-pkgs\n\t--no-shorten-pkgs  # (don't) shorten package names (default: don't shorten)\n\n\teg,\n\t$0 --no-include-tname stacks.txt > collapsed.txt\nUSAGE_END\n}\n\nGetOptions(\n\t'include-tname!'  => \\$include_tname,\n\t'include-tid!'    => \\$include_tid,\n\t'shorten-pkgs!'   => \\$shorten_pkgs,\n\t'help'            => \\$help,\n) or usage();\n$help && usage();\n\n\n# internals\nmy %collapsed;\n\nsub remember_stack {\n\tmy ($stack, $count) = @_;\n\t$collapsed{$stack} += $count;\n}\n\nmy @stack;\nmy $tname;\nmy $state = \"?\";\n\nforeach (<>) {\n\tnext if m/^#/;\n\tchomp;\n\n\tif (m/^$/) {\n\t\t# only include RUNNABLE states\n\t\tgoto clear if $state ne \"RUNNABLE\";\n\n\t\t# save stack\n\t\tif (defined $tname) { unshift @stack, $tname; }\n\t\tremember_stack(join(\";\", @stack), 1) if @stack;\nclear:\n\t\tundef @stack;\n\t\tundef $tname;\n\t\t$state = \"?\";\n\t\tnext;\n\t}\n\n\t#\n\t# While parsing jstack output, the $state variable may be altered from\n\t# RUNNABLE to other states. This causes the stacks to be filtered later,\n\t# since only RUNNABLE stacks are included.\n\t#\n\n\tif (/^\"([^\"]*)/) {\n\t\tmy $name = $1;\n\n\t\tif ($include_tname) {\n\t\t\t$tname = $name;\n\t\t\tunless ($include_tid) {\n\t\t\t\t$tname =~ s/-\\d+$//;\n\t\t\t}\n\t\t}\n\n\t\t# set state for various background threads\n\t\t$state = \"BACKGROUND\" if $name =~ /C. CompilerThread/;\n\t\t$state = \"BACKGROUND\" if $name =~ /Signal Dispatcher/;\n\t\t$state = \"BACKGROUND\" if $name =~ /Service Thread/;\n\t\t$state = \"BACKGROUND\" if $name =~ /Attach Listener/;\n\n\t} elsif (/java.lang.Thread.State: (\\S+)/) {\n\t\t$state = $1 if $state eq \"?\";\n\t} elsif (/^\\s*at ([^\\(]*)/) {\n\t\tmy $func = $1;\n\t\tif ($shorten_pkgs) {\n\t\t\tmy ($pkgs, $clsFunc) = ( $func =~ m/(.*\\.)([^.]+\\.[^.]+)$/ );\n\t\t\t$pkgs =~ s/(\\w)\\w*/$1/g;\n\t\t\t$func = $pkgs . $clsFunc;\n\t\t}\n\t\tunshift @stack, $func;\n\n\t\t# fix state for epollWait\n\t\t$state = \"WAITING\" if $func =~ /epollWait/;\n\t\t$state = \"WAITING\" if $func =~ /EPoll\\.wait/;\n\n\n\t\t# fix state for various networking functions\n\t\t$state = \"NETWORK\" if $func =~ /socketAccept$/;\n\t\t$state = \"NETWORK\" if $func =~ /Socket.*accept0$/;\n\t\t$state = \"NETWORK\" if $func =~ /socketRead0$/;\n\n\t} elsif (/^\\s*-/ or /^2\\d\\d\\d-/ or /^Full thread dump/ or\n\t\t /^JNI global references:/) {\n\t\t# skip these info lines\n\t\tnext;\n\t} else {\n\t\twarn \"Unrecognized line: $_\";\n\t}\n}\n\nforeach my $k (sort { $a cmp $b } keys %collapsed) {\n\tprint \"$k $collapsed{$k}\\n\";\n}\n"
  },
  {
    "path": "stackcollapse-ljp.awk",
    "content": "#!/usr/bin/awk -f\n#\n# stackcollapse-ljp.awk\tcollapse lightweight java profile reports\n#\t\t\t\tinto single lines stacks.\n#\n# Parses a list of multiline stacks generated by:\n#\n#  https://code.google.com/p/lightweight-java-profiler\n#\n# and outputs a semicolon separated stack followed by a space and a count.\n#\n# USAGE: ./stackcollapse-ljp.pl infile > outfile\n#\n# Example input:\n#\n#  42 3  my_func_b(prog.java:455)\n#        my_func_a(prog.java:123)\n#        java.lang.Thread.run(Thread.java:744)\n#  [...]\n#\n# Example output:\n#\n#  java.lang.Thread.run;my_func_a;my_func_b 42\n#\n# The unused number is the number of frames in each stack.\n#\n# Copyright 2014 Brendan Gregg.  All rights reserved.\n#\n# CDDL HEADER START\n#\n# The contents of this file are subject to the terms of the\n# Common Development and Distribution License (the \"License\").\n# You may not use this file except in compliance with the License.\n#\n# You can obtain a copy of the license at docs/cddl1.txt or\n# http://opensource.org/licenses/CDDL-1.0.\n# See the License for the specific language governing permissions\n# and limitations under the License.\n#\n# When distributing Covered Code, include this CDDL HEADER in each\n# file and include the License file at docs/cddl1.txt.\n# If applicable, add the following below this CDDL HEADER, with the\n# fields enclosed by brackets \"[]\" replaced with your own identifying\n# information: Portions Copyright [yyyy] [name of copyright owner]\n#\n# CDDL HEADER END\n#\n# 12-Jun-2014\tBrendan Gregg\tCreated this.\n\n$1 == \"Total\" {\n\t# We're done. Print last stack and exit.\n\tprint stack, count\n\texit\n}\n\n{\n\t# Strip file location. Comment this out to keep.\n\tgsub(/\\(.*\\)/, \"\")\n}\n\nNF == 3 {\n\t# New stack begins. Print previous buffered stack.\n\tif (count)\n\t\tprint stack, count\n\n\t# Begin a new stack.\n\tcount = $1\n\tstack = $3\n}\n\nNF == 1 {\n\t# Build stack.\n\tstack = $1 \";\" stack\n}\n"
  },
  {
    "path": "stackcollapse-perf-sched.awk",
    "content": "#!/usr/bin/awk -f\n\n#\n# This program generates collapsed off-cpu stacks fit for use by flamegraph.pl\n# from scheduler data collected via perf_events.\n#\n# Outputs the cumulative time off cpu in us for each distinct stack observed.\n#\n# Some awk variables further control behavior:\n#\n#   record_tid          If truthy, causes all stack traces to include the\n#                       command and LWP id.\n#\n#   record_wake_stack   If truthy, stacks include the frames from the wakeup\n#                       event in addition to the sleep event.\n#                       See http://www.brendangregg.com/FlameGraphs/offcpuflamegraphs.html#Wakeup\n#\n#   recurse             If truthy, attempt to recursively identify and\n#                       visualize the full wakeup stack chain.\n#                       See http://www.brendangregg.com/FlameGraphs/offcpuflamegraphs.html#ChainGraph\n#\n#                       Note that this is only an approximation, as only the\n#                       last sleep event is recorded (e.g. if a thread slept\n#                       multiple times before waking another thread, only the\n#                       last sleep event is used). Implies record_wake_stack=1\n#\n# To set any of these variables from the command line, run via:\n#\n#    stackcollapse-perf-sched.awk -v recurse=1\n#\n# == Important warning ==\n#\n# WARNING: tracing all scheduler events is very high overhead in perf. Even\n# more alarmingly, there appear to be bugs in perf that prevent it from reliably\n# getting consistent traces (even with large trace buffers), causing it to\n# produce empty perf.data files with error messages of the form:\n#\n#   0x952790 [0x736d]: failed to process type: 3410\n#\n# This failure is not determinisitic, so re-executing perf record will\n# eventually succeed.\n#\n# == Usage ==\n#\n# First, record data via perf_events:\n#\n# sudo perf record -g -e 'sched:sched_switch' \\\n#       -e 'sched:sched_stat_sleep' -e 'sched:sched_stat_blocked' \\\n#       -p <pid> -o perf.data  -- sleep 1\n#\n# Then post process with this script:\n#\n# sudo perf script -f time,comm,pid,tid,event,ip,sym,dso,trace -i perf.data | \\\n#       stackcollapse-perf-sched.awk -v recurse=1 | \\\n#       flamegraph.pl --color=io --countname=us >out.svg\n#\n\n#\n# CDDL HEADER START\n#\n# The contents of this file are subject to the terms of the\n# Common Development and Distribution License (the \"License\").\n# You may not use this file except in compliance with the License.\n#\n# You can obtain a copy of the license at docs/cddl1.txt or\n# http://opensource.org/licenses/CDDL-1.0.\n# See the License for the specific language governing permissions\n# and limitations under the License.\n#\n# When distributing Covered Code, include this CDDL HEADER in each\n# file and include the License file at docs/cddl1.txt.\n# If applicable, add the following below this CDDL HEADER, with the\n# fields enclosed by brackets \"[]\" replaced with your own identifying\n# information: Portions Copyright [yyyy] [name of copyright owner]\n#\n# CDDL HEADER END\n#\n\n#\n# Copyright (c) 2015 by MemSQL. All rights reserved.\n#\n\n#\n# Match a perf captured variable, returning just the contents. For example, for\n# the following line, get_perf_captured_variable(\"pid\") would return \"27235\":\n#\n#     swapper     0 [006] 708189.626415: sched:sched_stat_sleep: comm=memsqld pid=27235 delay=100078421 [ns\n#\nfunction get_perf_captured_variable(variable)\n{\n\tmatch($0, variable \"=[^[:space:]]+\")\n\treturn substr($0, RSTART + length(variable) + 1,\n                      RLENGTH - length(variable) - 1)\n}\n\n#\n# The timestamp is the first field that ends in a colon, e.g.:\n#\n#     swapper     0 [006] 708189.626415: sched:sched_stat_sleep: comm=memsqld pid=27235 delay=100078421 [ns\n#\n# or\n#\n#     swapper     0/0     708189.626415: sched:sched_stat_sleep: comm=memsqld pid=27235 delay=100078421 [ns]\n#\nfunction get_perf_timestamp()\n{\n\tmatch($0, \" [^ :]+:\")\n\treturn substr($0, RSTART + 1, RLENGTH - 2)\n}\n\n!/^#/ && /sched:sched_switch/ {\n\tswitchcommand = get_perf_captured_variable(\"comm\")\n\n\tswitchpid = get_perf_captured_variable(\"prev_pid\")\n\n\tswitchtime=get_perf_timestamp()\n\n\tswitchstack=\"\"\n}\n\n#\n# Strip the function name from a stack entry\n#\n# Stack entry is expected to be formatted like:\n#           c60849 MyClass::Foo(unsigned long) (/home/areece/a.out)\n#\nfunction get_function_name()\n{\n\t# We start from 2 since we don't need the hex offset.\n\t# We stop at NF - 1 since we don't need the library path.\n\tfuncname = $2\n\tfor (i = 3; i <= NF - 1; i++) {\n\t\tfuncname = funcname \" \" $i\n\t}\n\treturn funcname\n}\n\n(switchpid != 0 && /^\\s/) {\n\tif (switchstack == \"\")  {\n\t\tswitchstack = get_function_name()\n\t} else {\n\t\tswitchstack = get_function_name() \";\" switchstack\n\t}\n}\n\n(switchpid != 0 && /^$/) {\n\tswitch_stacks[switchpid] = switchstack\n\tdelete last_switch_stacks[switchpid]\n\tswitch_time[switchpid] = switchtime\n\n\tswitchpid=0\n\tswitchcommand=\"\"\n\tswitchstack=\"\"\n}\n\n!/^#/ && (/sched:sched_stat_sleep/ || /sched:sched_stat_blocked/) {\n\twakecommand=$1\n\twakepid=$2\n\n\twaketime=get_perf_timestamp()\n\n\tstat_next_command = get_perf_captured_variable(\"comm\")\n\n\tstat_next_pid = get_perf_captured_variable(\"pid\")\n\n\tstat_delay_ns = int(get_perf_captured_variable(\"delay\"))\n\n\twakestack=\"\"\n}\n\n(stat_next_pid != 0 && /^\\s/) {\n\tif (wakestack == \"\") {\n\t\twakestack = get_function_name()\n\t} else {\n\t\t# We build the wakestack in reverse order.\n\t\twakestack = wakestack \";\" get_function_name()\n\t}\n}\n\n(stat_next_pid != 0 && /^$/) {\n\t#\n\t# For some reason, perf appears to output duplicate\n\t# sched:sched_stat_sleep and sched:sched_stat_blocked events. We only\n\t# handle the first event.\n\t#\n\tif (stat_next_pid in switch_stacks) {\n\t\tlast_wake_time[stat_next_pid] = waketime\n\n\t\tstack = switch_stacks[stat_next_pid]\n\t\tif (recurse || record_wake_stack) {\n\t\t\tstack = stack \";\" wakestack\n\t\t\tif (record_tid) {\n\t\t\t\tstack = stack \";\" wakecommand \"-\" wakepid\n\t\t\t} else {\n\t\t\t\tstack = stack \";\" wakecommand\n\t\t\t}\n\t\t}\n\n\t\tif (recurse) {\n\t\t\tif (last_wake_time[wakepid] > last_switch_time[stat_next_pid]) {\n\t\t\t\tstack = stack \";-;\" last_switch_stacks[wakepid]\n\t\t\t}\n\t\t\tlast_switch_stacks[stat_next_pid] = stack\n\t\t}\n\n\t\tdelete switch_stacks[stat_next_pid]\n\n\t\tif (record_tid) {\n\t\t\tstack_times[stat_next_command \"-\" stat_next_pid \";\" stack] += stat_delay_ns\n\t\t} else {\n\t\t\tstack_times[stat_next_command \";\" stack] += stat_delay_ns\n\t\t}\n\t}\n\n\twakecommand=\"\"\n\twakepid=0\n\tstat_next_pid=0\n\tstat_next_command=\"\"\n\tstat_delay_ms=0\n}\n\nEND {\n\tfor (stack in stack_times) {\n\t\tif (int(stack_times[stack] / 1000) > 0) {\n\t\t\tprint stack, int(stack_times[stack] / 1000)\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "stackcollapse-perf.pl",
    "content": "#!/usr/bin/perl -w\n#\n# stackcollapse-perf.pl\tcollapse perf samples into single lines.\n#\n# Parses a list of multiline stacks generated by \"perf script\", and\n# outputs a semicolon separated stack followed by a space and a count.\n# If memory addresses (+0xd) are present, they are stripped, and resulting\n# identical stacks are colased with their counts summed.\n#\n# USAGE: ./stackcollapse-perf.pl [options] infile > outfile\n#\n# Run \"./stackcollapse-perf.pl -h\" to list options.\n#\n# Example input:\n#\n#  swapper     0 [000] 158665.570607: cpu-clock:\n#         ffffffff8103ce3b native_safe_halt ([kernel.kallsyms])\n#         ffffffff8101c6a3 default_idle ([kernel.kallsyms])\n#         ffffffff81013236 cpu_idle ([kernel.kallsyms])\n#         ffffffff815bf03e rest_init ([kernel.kallsyms])\n#         ffffffff81aebbfe start_kernel ([kernel.kallsyms].init.text)\n#  [...]\n#\n# Example output:\n#\n#  swapper;start_kernel;rest_init;cpu_idle;default_idle;native_safe_halt 1\n#\n# Input may be created and processed using:\n#\n#  perf record -a -g -F 997 sleep 60\n#  perf script | ./stackcollapse-perf.pl > out.stacks-folded\n#\n# The output of \"perf script\" should include stack traces. If these are missing\n# for you, try manually selecting the perf script output; eg:\n#\n#  perf script -f comm,pid,tid,cpu,time,event,ip,sym,dso,trace | ...\n#\n# This is also required for the --pid or --tid options, so that the output has\n# both the PID and TID.\n#\n# Copyright 2012 Joyent, Inc.  All rights reserved.\n# Copyright 2012 Brendan Gregg.  All rights reserved.\n#\n# CDDL HEADER START\n#\n# The contents of this file are subject to the terms of the\n# Common Development and Distribution License (the \"License\").\n# You may not use this file except in compliance with the License.\n#\n# You can obtain a copy of the license at docs/cddl1.txt or\n# http://opensource.org/licenses/CDDL-1.0.\n# See the License for the specific language governing permissions\n# and limitations under the License.\n#\n# When distributing Covered Code, include this CDDL HEADER in each\n# file and include the License file at docs/cddl1.txt.\n# If applicable, add the following below this CDDL HEADER, with the\n# fields enclosed by brackets \"[]\" replaced with your own identifying\n# information: Portions Copyright [yyyy] [name of copyright owner]\n#\n# CDDL HEADER END\n#\n# 02-Mar-2012\tBrendan Gregg\tCreated this.\n# 02-Jul-2014\t   \"\t  \"\tAdded process name to stacks.\n\nuse strict;\nuse Getopt::Long;\n\nmy %collapsed;\n\nsub remember_stack {\n\tmy ($stack, $count) = @_;\n\t$collapsed{$stack} += $count;\n}\nmy $annotate_kernel = 0; # put an annotation on kernel function\nmy $annotate_jit = 0;   # put an annotation on jit symbols\nmy $annotate_all = 0;   # enale all annotations\nmy $include_pname = 1;\t# include process names in stacks\nmy $include_pid = 0;\t# include process ID with process name\nmy $include_tid = 0;\t# include process & thread ID with process name\nmy $include_addrs = 0;\t# include raw address where a symbol can't be found\nmy $tidy_java = 1;\t# condense Java signatures\nmy $tidy_generic = 1;\t# clean up function names a little\nmy $target_pname;\t# target process name from perf invocation\nmy $event_filter = \"\";    # event type filter, defaults to first encountered event\nmy $event_defaulted = 0;  # whether we defaulted to an event (none provided)\nmy $event_warning = 0;\t  # if we printed a warning for the event\n\nmy $show_inline = 0;\nmy $show_context = 0;\n\nmy $srcline_in_input = 0; # if there are extra lines with source location (perf script -F+srcline)\nGetOptions('inline' => \\$show_inline,\n           'context' => \\$show_context,\n           'srcline' => \\$srcline_in_input,\n           'pid' => \\$include_pid,\n           'kernel' => \\$annotate_kernel,\n           'jit' => \\$annotate_jit,\n           'all' => \\$annotate_all,\n           'tid' => \\$include_tid,\n           'addrs' => \\$include_addrs,\n           'event-filter=s' => \\$event_filter)\nor die <<USAGE_END;\nUSAGE: $0 [options] infile > outfile\\n\n\t--pid\t\t# include PID with process names [1]\n\t--tid\t\t# include TID and PID with process names [1]\n\t--inline\t# un-inline using addr2line\n\t--all\t\t# all annotations (--kernel --jit)\n\t--kernel\t# annotate kernel functions with a _[k]\n\t--jit\t\t# annotate jit functions with a _[j]\n\t--context\t# adds source context to --inline\n\t--srcline\t# parses output of 'perf script -F+srcline' and adds source context\n\t--addrs\t\t# include raw addresses where symbols can't be found\n\t--event-filter=EVENT\t# event name filter\\n\n[1] perf script must emit both PID and TIDs for these to work; eg, Linux < 4.1:\n\tperf script -f comm,pid,tid,cpu,time,event,ip,sym,dso,trace\n    for Linux >= 4.1:\n\tperf script -F comm,pid,tid,cpu,time,event,ip,sym,dso,trace\n    If you save this output add --header on Linux >= 3.14 to include perf info.\nUSAGE_END\n\nif ($annotate_all) {\n\t$annotate_kernel = $annotate_jit = 1;\n}\n\nmy %inlineCache;\n\nmy %nmCache;\n\nsub inlineCacheAdd {\n\tmy ($pc, $mod, $result) = @_;\n   if (defined($inlineCache{$pc})) {\n      $inlineCache{$pc}{$mod} = $result;\n   } else {\n      $inlineCache{$pc} = {$mod => $result};\n   }\n}\n\n# for the --inline option\nsub inline {\n\tmy ($pc, $rawfunc, $mod) = @_;\n\n\treturn $inlineCache{$pc}{$mod} if defined($inlineCache{$pc}{$mod});\n\n\t# capture addr2line output\n\tmy $a2l_output = `addr2line -a $pc -e $mod -i -f -s -C`;\n\n\t# remove first line\n\t$a2l_output =~ s/^(.*\\n){1}//;\n\n\tif ($a2l_output =~ /\\?\\?\\n\\?\\?:0/) {\n\t\t# if addr2line fails and rawfunc is func+offset, then fall back to it\n\t\tif ($rawfunc =~ /^(.+)\\+0x([0-9a-f]+)$/) {\n\t\t\tmy $func = $1;\n\t\t\tmy $addr = hex $2;\n\n\t\t\t$nmCache{$mod}=`nm $mod` unless defined $nmCache{$mod};\n\n\t\t\tif ($nmCache{$mod} =~ /^([0-9a-f]+) . \\Q$func\\E$/m) {\n\t\t\t   my $base = hex $1;\n\t\t\t\tmy $newPc = sprintf \"0x%x\", $base+$addr;\n\t\t\t\tmy $result = inline($newPc, '', $mod);\n\t\t\t\tinlineCacheAdd($pc, $mod, $result);\n\t\t\t\treturn $result;\n\t\t\t}\n\t\t}\n\t}\n\n\tmy @fullfunc;\n\tmy $one_item = \"\";\n\tfor (split /^/, $a2l_output) {\n\t\tchomp $_;\n\n\t\t# remove discriminator info if exists\n\t\t$_ =~ s/ \\(discriminator \\S+\\)//;\n\n\t\tif ($one_item eq \"\") {\n\t\t\t$one_item = $_;\n\t\t} else {\n\t\t\tif ($show_context == 1) {\n\t\t\t\tunshift @fullfunc, $one_item . \":$_\";\n\t\t\t} else {\n\t\t\t\tunshift @fullfunc, $one_item;\n\t\t\t}\n\t\t\t$one_item = \"\";\n\t\t}\n\t}\n\n\tmy $result = join \";\" , @fullfunc;\n\n\tinlineCacheAdd($pc, $mod, $result);\n\n\treturn $result;\n}\n\nmy @stack;\nmy $pname;\nmy $m_pid;\nmy $m_tid;\nmy $m_period;\n\n#\n# Main loop\n#\nwhile (defined($_ = <>)) {\n\n\t# find the name of the process launched by perf, by stepping backwards\n\t# over the args to find the first non-option (no dash):\n\tif (/^# cmdline/) {\n\t\tmy @args = split ' ', $_;\n\t\tforeach my $arg (reverse @args) {\n\t\t\tif ($arg !~ /^-/) {\n\t\t\t\t$target_pname = $arg;\n\t\t\t\t$target_pname =~ s:.*/::;  # strip pathname\n\t\t\t\tlast;\n\t\t\t}\n\t\t}\n\t}\n\n\t# skip remaining comments\n\tnext if m/^#/;\n\tchomp;\n\n\t# end of stack. save cached data.\n\tif (m/^$/) {\n\t\t# ignore filtered samples\n\t\tnext if not $pname;\n\n\t\tif ($include_pname) {\n\t\t\tif (defined $pname) {\n\t\t\t\tunshift @stack, $pname;\n\t\t\t} else {\n\t\t\t\tunshift @stack, \"\";\n\t\t\t}\n\t\t}\n\t\tremember_stack(join(\";\", @stack), $m_period) if @stack;\n\t\tundef @stack;\n\t\tundef $pname;\n\t\tnext;\n\t}\n\n\t#\n\t# event record start\n\t#\n\tif (/^(\\S.+?)\\s+(\\d+)\\/*(\\d+)*\\s+/) {\n\t\t# default \"perf script\" output has TID but not PID\n\t\t# eg, \"java 25607 4794564.109216: 1 cycles:\"\n\t\t# eg, \"java 12688 [002] 6544038.708352: 235 cpu-clock:\"\n\t\t# eg, \"V8 WorkerThread 25607 4794564.109216: 104345 cycles:\"\n\t\t# eg, \"java 24636/25607 [000] 4794564.109216: 1 cycles:\"\n\t\t# eg, \"java 12688/12764 6544038.708352: 10309278 cpu-clock:\"\n\t\t# eg, \"V8 WorkerThread 24636/25607 [000] 94564.109216: 100 cycles:\"\n\t\t# other combinations possible\n\t\tmy ($comm, $pid, $tid, $period) = ($1, $2, $3, \"\");\n\t\tif (not $tid) {\n\t\t\t$tid = $pid;\n\t\t\t$pid = \"?\";\n\t\t}\n\n\t\tif (/:\\s*(\\d+)*\\s+(\\S+):\\s*$/) {\n\t\t\t$period = $1;\n\t\t\tmy $event = $2;\n\n\t\t\tif ($event_filter eq \"\") {\n\t\t\t\t# By default only show events of the first encountered\n\t\t\t\t# event type. Merging together different types, such as\n\t\t\t\t# instructions and cycles, produces misleading results.\n\t\t\t\t$event_filter = $event;\n\t\t\t\t$event_defaulted = 1;\n\t\t\t} elsif ($event ne $event_filter) {\n\t\t\t\tif ($event_defaulted and $event_warning == 0) {\n\t\t\t\t\t# only print this warning if necessary:\n\t\t\t\t\t# when we defaulted and there was\n\t\t\t\t\t# multiple event types.\n\t\t\t\t\tprint STDERR \"Filtering for events of type: $event\\n\";\n\t\t\t\t\t$event_warning = 1;\n\t\t\t\t}\n\t\t\t\tnext;\n\t\t\t}\n\t\t}\n\n\t\tif (not $period) {\n\t\t\t$period = 1\n\t\t}\n\t\t($m_pid, $m_tid, $m_period) = ($pid, $tid, $period);\n\n\t\tif ($include_tid) {\n\t\t\t$pname = \"$comm-$m_pid/$m_tid\";\n\t\t} elsif ($include_pid) {\n\t\t\t$pname = \"$comm-$m_pid\";\n\t\t} else {\n\t\t\t$pname = \"$comm\";\n\t\t}\n\t\t$pname =~ tr/ /_/;\n\n\t#\n\t# stack line\n\t#\n\t} elsif (/^\\s*(\\w+)\\s*(.+) \\((.*)\\)/) {\n\t\t# ignore filtered samples\n\t\tnext if not $pname;\n\n\t\tmy ($pc, $rawfunc, $mod) = ($1, $2, $3);\n\n\t\tif ($show_inline == 1 && $mod !~ m/(perf-\\d+.map|kernel\\.|\\[[^\\]]+\\])/) {\n\t\t\tmy $inlineRes = inline($pc, $rawfunc, $mod);\n\t\t\t# - empty result this happens e.g., when $mod does not exist or is a path to a compressed kernel module\n\t\t\t#   if this happens, the user will see error message from addr2line written to stderr\n\t\t\t# - if addr2line results in \"??\" , then it's much more sane to fall back than produce a '??' in graph\n\t\t\tif($inlineRes ne \"\" and $inlineRes ne \"??\" and $inlineRes ne \"??:??:0\" ) {\n\t\t\t\tunshift @stack, $inlineRes;\n\t\t\t\tnext;\n\t\t\t}\n\t\t}\n\n\t\t# Linux 4.8 included symbol offsets in perf script output by default, eg:\n\t\t# 7fffb84c9afc cpu_startup_entry+0x800047c022ec ([kernel.kallsyms])\n\t\t# strip these off:\n\t\t$rawfunc =~ s/\\+0x[\\da-f]+$//;\n\n\t\tnext if $rawfunc =~ /^\\(/;\t\t# skip process names\n\n\t\tmy $is_unknown=0;\n\t\tmy @inline;\n\t\tfor (split /\\->/, $rawfunc) {\n\t\t\tmy $func = $_;\n\n\t\t\tif ($func eq \"[unknown]\") {\n\t\t\t\tif ($mod ne \"[unknown]\") { # use module name instead, if known\n\t\t\t\t\t$func = $mod;\n\t\t\t\t\t$func =~ s/.*\\///;\n\t\t\t\t} else {\n\t\t\t\t\t$func = \"unknown\";\n\t\t\t\t\t$is_unknown=1;\n\t\t\t\t}\n\n\t\t\t\tif ($include_addrs) {\n\t\t\t\t\t$func = \"\\[$func \\<$pc\\>\\]\";\n\t\t\t\t} else {\n\t\t\t\t\t$func = \"\\[$func\\]\";\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ($tidy_generic) {\n\t\t\t\t$func =~ s/;/:/g;\n\t\t\t\tif ($func !~ m/\\.\\(.*\\)\\./) {\n\t\t\t\t\t# This doesn't look like a Go method name (such as\n\t\t\t\t\t# \"net/http.(*Client).Do\"), so everything after the first open\n\t\t\t\t\t# paren (that is not part of an \"(anonymous namespace)\") is\n\t\t\t\t\t# just noise.\n\t\t\t\t\t$func =~ s/\\((?!anonymous namespace\\)).*//;\n\t\t\t\t}\n\t\t\t\t# now tidy this horrible thing:\n\t\t\t\t# 13a80b608e0a RegExp:[&<>\\\"\\'] (/tmp/perf-7539.map)\n\t\t\t\t$func =~ tr/\"\\'//d;\n\t\t\t\t# fall through to $tidy_java\n\t\t\t}\n\n\t\t\tif ($tidy_java and $pname =~ m/^java/) {\n\t\t\t\t# along with $tidy_generic, converts the following:\n\t\t\t\t#\tLorg/mozilla/javascript/ContextFactory;.call(Lorg/mozilla/javascript/ContextAction;)Ljava/lang/Object;\n\t\t\t\t#\tLorg/mozilla/javascript/ContextFactory;.call(Lorg/mozilla/javascript/C\n\t\t\t\t#\tLorg/mozilla/javascript/MemberBox;.<init>(Ljava/lang/reflect/Method;)V\n\t\t\t\t# into:\n\t\t\t\t#\torg/mozilla/javascript/ContextFactory:.call\n\t\t\t\t#\torg/mozilla/javascript/ContextFactory:.call\n\t\t\t\t#\torg/mozilla/javascript/MemberBox:.init\n\t\t\t\t$func =~ s/^L// if $func =~ m:/:;\n\t\t\t}\n\n\t\t\t#\n\t\t\t# Annotations\n\t\t\t#\n\t\t\t# detect inlined from the @inline array\n\t\t\t# detect kernel from the module name; eg, frames to parse include:\n\t\t\t#          ffffffff8103ce3b native_safe_halt ([kernel.kallsyms]) \n\t\t\t#          8c3453 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t\t\t#          7d8 ipv4_conntrack_local+0x7f8f80b8 ([nf_conntrack_ipv4])\n\t\t\t# detect jit from the module name; eg:\n\t\t\t#          7f722d142778 Ljava/io/PrintStream;::print (/tmp/perf-19982.map)\n\t\t\tif (scalar(@inline) > 0) {\n\t\t\t\t$func .= \"_[i]\" unless $func =~ m/\\_\\[i\\]/;\t# inlined\n\t\t\t} elsif ($annotate_kernel == 1 && $mod =~ m/(^\\[|vmlinux$)/ && $mod !~ /unknown/) {\n\t\t\t\t$func .= \"_[k]\";\t# kernel\n\t\t\t} elsif ($annotate_jit == 1 && $mod =~ m:/tmp/perf-\\d+\\.map:) {\n\t\t\t\t$func .= \"_[j]\" unless $func =~ m/\\_\\[j\\]/;\t# jitted\n\t\t\t}\n\n\t\t\t#\n\t\t\t# Source lines\n\t\t\t#\n\t\t\t#\n\t\t\t# Sample outputs:\n\t\t\t#   | a.out 35081 252436.005167:     667783 cycles:\n\t\t\t#   |                   408ebb some_method_name+0x8b (/full/path/to/a.out)\n\t\t\t#   |   uniform_int_dist.h:300\n\t\t\t#   |                   4069f5 main+0x935 (/full/path/to/a.out)\n\t\t\t#   |   file.cpp:137\n\t\t\t#   |             7f6d2148eb25 __libc_start_main+0xd5 (/lib64/libc-2.33.so)\n\t\t\t#   |   libc-2.33.so[27b25]\n\t\t\t#\n\t\t\t#   | a.out 35081 252435.738165:     306459 cycles:\n\t\t\t#   |             7f6d213c2750 [unknown] (/usr/lib64/libkmod.so.2.3.6)\n\t\t\t#   |   libkmod.so.2.3.6[6750]\n\t\t\t#\n\t\t\t#   | a.out 35081 252435.738373:     315813 cycles:\n\t\t\t#   |             7f6d215ca51b __strlen_avx2+0x4b (/lib64/libc-2.33.so)\n\t\t\t#   |   libc-2.33.so[16351b]\n\t\t\t#   |             7ffc71ee9580 [unknown] ([unknown])\t\t\t\n\t\t\t#   |\n\t\t\t#\n\t\t\t#   | a.out 35081 252435.718940:     247984 cycles:\n\t\t\t#   |         ffffffff814f9302 up_write+0x32 ([kernel.kallsyms])\n\t\t\t#   |   [kernel.kallsyms][ffffffff814f9302]\n\t\t\tif($srcline_in_input and not $is_unknown){\n\t\t\t\t$_ = <>;\n\t\t\t\tchomp;\n\t\t\t\ts/\\[.*?\\]//g;\n\t\t\t\ts/^\\s*//g;\n\t\t\t\ts/\\s*$//g;\n\t\t\t\t$func.=':'.$_ unless $_ eq \"\";\n\t\t\t}\n\n\t\t\tpush @inline, $func;\n\t\t}\n\n\t\tunshift @stack, @inline;\n\t} else {\n\t\twarn \"Unrecognized line: $_\";\n\t}\n}\n\nforeach my $k (sort { $a cmp $b } keys %collapsed) {\n\tprint \"$k $collapsed{$k}\\n\";\n}\n"
  },
  {
    "path": "stackcollapse-pmc.pl",
    "content": "#!/usr/bin/env perl\n#\n# Copyright (c) 2014 Ed Maste.  All rights reserved.\n#\n# Redistribution and use in source and binary forms, with or without\n# modification, are permitted provided that the following conditions\n# are met:\n#\n# 1. Redistributions of source code must retain the above copyright\n#    notice, this list of conditions and the following disclaimer.\n# 2. Redistributions in binary form must reproduce the above copyright\n#    notice, this list of conditions and the following disclaimer in the\n#    documentation and/or other materials provided with the distribution.\n#\n# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS \"AS IS\" AND\n# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE\n# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\n# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\n# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT\n# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY\n# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF\n# SUCH DAMAGE.\n#\n# stackcollapse-pmc.pl\t\tcollapse hwpmc samples into single lines.\n#\n# Parses a list of multiline stacks generated by \"hwpmc -G\", and outputs a\n# semicolon-separated stack followed by a space and a count.\n#\n# Usage:\n#   pmcstat -S unhalted-cycles -O pmc.out\n#   pmcstat -R pmc.out -z16 -G pmc.graph\n#   stackcollapse-pmc.pl pmc.graph > pmc.stack\n#\n# Example input:\n#\n# 03.07%  [17]       witness_unlock @ /boot/kernel/kernel\n#  70.59%  [12]        __mtx_unlock_flags\n#   16.67%  [2]          selfdfree\n#    100.0%  [2]           sys_poll\n#     100.0%  [2]            amd64_syscall\n#   08.33%  [1]          pmap_ts_referenced\n#    100.0%  [1]           vm_pageout\n#     100.0%  [1]            fork_exit\n# ...\n#\n# Example output:\n#\n# amd64_syscall;sys_poll;selfdfree;__mtx_unlock_flags;witness_unlock 2\n# amd64_syscall;sys_poll;pmap_ts_referenced;__mtx_unlock_flagsgeout;fork_exit 1\n# ...\n\nuse warnings;\nuse strict;\n\nmy @stack;\nmy $prev_count;\nmy $prev_indent = -1;\n\nwhile (defined($_ = <>)) {\n\tif (m/^( *)[0-9.]+%  \\[([0-9]+)\\]\\s*(\\S+)/) {\n\t\tmy $indent = length($1);\n\t\tif ($indent <= $prev_indent) {\n\t\t\tprint join(';', reverse(@stack[0 .. $prev_indent])) .\n\t\t\t    \" $prev_count\\n\";\n\t\t}\n\t\t$stack[$indent] = $3;\n\t\t$prev_count = $2;\n\t\t$prev_indent = $indent;\n\t}\n}\nprint join(';', reverse(@stack[0 .. $prev_indent])) .  \" $prev_count\\n\";\n"
  },
  {
    "path": "stackcollapse-recursive.pl",
    "content": "#!/usr/bin/perl -ws\n#\n# stackcollapse-recursive  Collapse direct recursive backtraces\n#\n# Post-process a stack list and merge direct recursive calls:\n#\n# Example input:\n#\n#     main;recursive;recursive;recursive;helper 1\n#\n# Output:\n#\n#     main;recursive;helper 1\n#\n# Copyright 2014 Gabriel Corona. All rights reserved.\n#\n# CDDL HEADER START\n#\n# The contents of this file are subject to the terms of the\n# Common Development and Distribution License (the \"License\").\n# You may not use this file except in compliance with the License.\n#\n# You can obtain a copy of the license at docs/cddl1.txt or\n# http://opensource.org/licenses/CDDL-1.0.\n# See the License for the specific language governing permissions\n# and limitations under the License.\n#\n# When distributing Covered Code, include this CDDL HEADER in each\n# file and include the License file at docs/cddl1.txt.\n# If applicable, add the following below this CDDL HEADER, with the\n# fields enclosed by brackets \"[]\" replaced with your own identifying\n# information: Portions Copyright [yyyy] [name of copyright owner]\n#\n# CDDL HEADER END\n\nmy %stacks;\n\nwhile(<>) {\n  chomp;\n  my ($stack_, $value) = (/^(.*)\\s+?(\\d+(?:\\.\\d*)?)$/);\n  if ($stack_) {\n    my @stack  = split(/;/, $stack_);\n\n    my @result = ();\n    my $i;\n    my $last=\"\";\n    for($i=0; $i!=@stack; ++$i) {\n      if(!($stack[$i] eq $last)) {\n        $result[@result] = $stack[$i];\n        $last = $stack[$i];\n      }\n    }\n\n    $stacks{join(\";\", @result)} += $value;\n  }\n}\n\nforeach my $k (sort { $a cmp $b } keys %stacks) {\n  print \"$k $stacks{$k}\\n\";\n}\n"
  },
  {
    "path": "stackcollapse-sample.awk",
    "content": "#!/usr/bin/awk -f\n#\n# Uses MacOS' /usr/bin/sample to generate a flamegraph of a process\n#\n# Usage:\n#\n# sudo sample [pid] -file /dev/stdout | stackcollapse-sample.awk | flamegraph.pl\n#\n# Options:\n#\n# The output will show the name of the library/framework at the call-site\n# with the form AppKit`NSApplication or libsystem`start_wqthread.\n#\n# If showing the framework or library name is not required, pass\n# MODULES=0 as an argument of the sample program.\n#\n# The generated SVG will be written to the output stream, and can be piped\n# into flamegraph.pl directly, or written to a file for conversion later.\n#\n# ---\n#\n# Copyright (c) 2017, Apple Inc.\n#\n# Redistribution and use in source and binary forms, with or without\n# modification, are permitted provided that the following conditions are met:\n#\n# 1. Redistributions of source code must retain the above copyright notice,\n# this list of conditions and the following disclaimer.\n#\n# 2. Redistributions in binary form must reproduce the above copyright notice,\n# this list of conditions and the following disclaimer in the documentation\n# and/or other materials provided with the distribution.\n#\n# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE\n# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE\n# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\n# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\n# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\n# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\n# POSSIBILITY OF SUCH DAMAGE.\n#\n\nBEGIN {\n\n  # Command line options\n  MODULES = 1       # Allows the user to enable/disable printing of modules.\n\n  # Internal variables\n  _FOUND_STACK = 0  # Found the stack traces in the output.\n  _LEVEL = -1       # The current level of indentation we are running.\n\n  # The set of symbols to ignore for 'waiting' threads, for ease of use.\n  # This will hide waiting threads from the view, making it easier to\n  # see what is actually running in the sample. These may be adjusted\n  # as necessary or appended to if other symbols need to be filtered out.\n\n  _IGNORE[\"libsystem_kernel`__psynch_cvwait\"] = 1\n  _IGNORE[\"libsystem_kernel`__select\"] = 1\n  _IGNORE[\"libsystem_kernel`__semwait_signal\"] = 1\n  _IGNORE[\"libsystem_kernel`__ulock_wait\"] = 1\n  _IGNORE[\"libsystem_kernel`__wait4\"] = 1\n  _IGNORE[\"libsystem_kernel`__workq_kernreturn\"] = 1\n  _IGNORE[\"libsystem_kernel`kevent\"] = 1\n  _IGNORE[\"libsystem_kernel`mach_msg_trap\"] = 1\n  _IGNORE[\"libsystem_kernel`read\"] = 1\n  _IGNORE[\"libsystem_kernel`semaphore_wait_trap\"] = 1\n\n  # The same set of symbols as above, without the module name.\n  _IGNORE[\"__psynch_cvwait\"] = 1\n  _IGNORE[\"__select\"] = 1\n  _IGNORE[\"__semwait_signal\"] = 1\n  _IGNORE[\"__ulock_wait\"] = 1\n  _IGNORE[\"__wait4\"] = 1\n  _IGNORE[\"__workq_kernreturn\"] = 1\n  _IGNORE[\"kevent\"] = 1\n  _IGNORE[\"mach_msg_trap\"] = 1\n  _IGNORE[\"read\"] = 1\n  _IGNORE[\"semaphore_wait_trap\"] = 1\n\n}\n\n# This is the first line in the /usr/bin/sample output that indicates the\n# samples follow subsequently. Until we see this line, the rest is ignored.\n\n/^Call graph/ {\n  _FOUND_STACK = 1\n}\n\n# This is found when we have reached the end of the stack output.\n# Identified by the string \"Total number in stack (...)\".\n\n/^Total number/ {\n  _FOUND_STACK = 0\n  printStack(_NEST,0)\n}\n\n# Prints the stack from FROM to TO (where FROM > TO)\n# Called when indenting back from a previous level, or at the end\n# of processing to flush the last recorded sample\n\nfunction printStack(FROM,TO) {\n\n  # We ignore certain blocking wait states, in the absence of being\n  # able to filter these threads from collection, otherwise\n  # we'll end up with many threads of equal length that represent\n  # the total time the sample was collected.\n  #\n  # Note that we need to collect the information to ensure that the\n  # timekeeping for the parental functions is appropriately adjusted\n  # so we just avoid printing it out when that occurs.\n  _PRINT_IT = !_IGNORE[_NAMES[FROM]]\n\n  # We run through all the names, from the root to the leaf, so that\n  # we generate a line that flamegraph.pl will like, of the form:\n  # Thread1234;example`main;example`otherFn 1234\n\n  for(l = FROM; l>=TO; l--) {\n    if (_PRINT_IT) {\n      printf(\"%s\", _NAMES[0])\n      for(i=1; i<=l; i++) {\n        printf(\";%s\", _NAMES[i])\n      }\n      print \" \" _TIMES[l]\n    }\n\n    # We clean up our current state to avoid bugs.\n    delete _NAMES[l]\n    delete _TIMES[l]\n  }\n}\n\n# This is where we process each line, of the form:\n#  5130 Thread_8749954\n#    + 5130 start_wqthread  (in libsystem_pthread.dylib) ...\n#    +   4282 _pthread_wqthread  (in libsystem_pthread.dylib) ...\n#    +   ! 4282 __doworkq_kernreturn  (in libsystem_kernel.dylib) ...\n#    +   848 _pthread_wqthread  (in libsystem_pthread.dylib) ...\n#    +     848 __doworkq_kernreturn  (in libsystem_kernel.dylib) ...\n\n_FOUND_STACK && match($0,/^    [^0-9]*[0-9]/) {\n\n  # We maintain two counters:\n  #   _LEVEL: the high water mark of the indentation level we have seen.\n  #   _NEST:  the current indentation level.\n  #\n  # We keep track of these two levels such that when the nesting level\n  # decreases, we print out the current state of where we are.\n\n  _NEST=(RLENGTH-5)/2\n  sub(/^[^0-9]*/,\"\") # Normalise the leading content so we start with time.\n  _TIME=$1           # The time recorded by 'sample', first integer value.\n\n  # The function name is in one or two parts, depending on what kind of\n  # function it is.\n  #\n  # If it is a standard C or C++ function, it will be of the form:\n  #  exampleFunction\n  #  Example::Function\n  #\n  # If it is an Objective-C funtion, it will be of the form:\n  #  -[NSExample function]\n  #  +[NSExample staticFunction]\n  #  -[NSExample function:withParameter]\n  #  +[NSExample staticFunction:withParameter:andAnother]\n\n  _FN1 = $2\n  _FN2 = $3\n\n  # If it is a standard C or C++ function then the following word will\n  # either be blank, or the text '(in', so we jut use the first one:\n\n  if (_FN2 == \"(in\" || _FN2 == \"\") {\n    _FN =_FN1\n  } else {\n    # Otherwise we concatenate the first two parts with .\n    _FN = _FN1 \".\" _FN2\n  }\n\n  # Modules are shown with '(in libfoo.dylib)' or '(in AppKit)'\n\n  _MODULE = \"\"\n  match($0, /\\(in [^)]*\\)/)\n\n  if (RSTART > 0 && MODULES) {\n\n    # Strip off the '(in ' (4 chars) and the final ')' char (1 char)\n    _MODULE = substr($0, RSTART+4, RLENGTH-5)\n\n    # Remove the .dylib function, since it adds no value.\n    gsub(/\\.dylib/, \"\", _MODULE)\n\n    # The function name is 'module`functionName'\n    _FN = _MODULE \"`\" _FN\n  }\n\n  # Now we have set up the variables, we can decide how to apply it\n  # If we are descending in the nesting, we don't print anything out:\n  # a\n  # ab\n  # abc\n  #\n  # We only print out something when we go back a level, or hit the end:\n  # abcd\n  # abe < prints out the stack up until this point, i.e. abcd\n\n  # We store a pair of arrays, indexed by the nesting level:\n  #\n  #  _TIMES - a list of the time reported to that function\n  #  _NAMES - a list of the function names for each current stack trace\n\n  # If we are backtracking, we need to flush the current output.\n  if (_NEST <= _LEVEL) {\n    printStack(_LEVEL,_NEST)\n  }\n\n  # Record the name and time of the function where we are.\n  _NAMES[_NEST] = _FN\n  _TIMES[_NEST] = _TIME\n\n  # We subtract the time we took from our parent so we don't double count.\n  if (_NEST > 0) {\n    _TIMES[_NEST-1] -= _TIME\n  }\n\n  # Raise the high water mark of the level we have reached.\n  _LEVEL = _NEST\n}\n"
  },
  {
    "path": "stackcollapse-stap.pl",
    "content": "#!/usr/bin/perl -w\n#\n# stackcollapse-stap.pl\tcollapse multiline SystemTap stacks\n#\t\t\t\tinto single lines.\n#\n# Parses a multiline stack followed by a number on a separate line, and\n# outputs a semicolon separated stack followed by a space and the number.\n# If memory addresses (+0xd) are present, they are stripped, and resulting\n# identical stacks are colased with their counts summed.\n#\n# USAGE: ./stackcollapse.pl infile > outfile\n#\n# Example input:\n#\n#  0xffffffff8103ce3b : native_safe_halt+0xb/0x10 [kernel]\n#  0xffffffff8101c6a3 : default_idle+0x53/0x1d0 [kernel]\n#  0xffffffff81013236 : cpu_idle+0xd6/0x120 [kernel]\n#  0xffffffff815bf03e : rest_init+0x72/0x74 [kernel]\n#  0xffffffff81aebbfe : start_kernel+0x3ba/0x3c5 [kernel]\n#\t2404\n#\n# Example output:\n#\n#  start_kernel;rest_init;cpu_idle;default_idle;native_safe_halt 2404\n#\n# Input may contain many stacks as generated from SystemTap.\n#\n# Copyright 2011 Joyent, Inc.  All rights reserved.\n# Copyright 2011 Brendan Gregg.  All rights reserved.\n#\n# CDDL HEADER START\n#\n# The contents of this file are subject to the terms of the\n# Common Development and Distribution License (the \"License\").\n# You may not use this file except in compliance with the License.\n#\n# You can obtain a copy of the license at docs/cddl1.txt or\n# http://opensource.org/licenses/CDDL-1.0.\n# See the License for the specific language governing permissions\n# and limitations under the License.\n#\n# When distributing Covered Code, include this CDDL HEADER in each\n# file and include the License file at docs/cddl1.txt.\n# If applicable, add the following below this CDDL HEADER, with the\n# fields enclosed by brackets \"[]\" replaced with your own identifying\n# information: Portions Copyright [yyyy] [name of copyright owner]\n#\n# CDDL HEADER END\n#\n# 16-Feb-2012\tBrendan Gregg\tCreated this.\n\nuse strict;\n\nmy %collapsed;\n\nsub remember_stack {\n\tmy ($stack, $count) = @_;\n\t$collapsed{$stack} += $count;\n}\n\nmy @stack;\n\nforeach (<>) {\n\tchomp;\n\n\tif (m/^\\s*(\\d+)+$/) {\n\t\tremember_stack(join(\";\", @stack), $1);\n\t\t@stack = ();\n\t\tnext;\n\t}\n\n\tnext if (m/^\\s*$/);\n\n\tmy $frame = $_;\n\t$frame =~ s/^\\s*//;\n\t$frame =~ s/\\+[^+]*$//;\n\t$frame =~ s/.* : //;\n\t$frame = \"-\" if $frame eq \"\";\n\tunshift @stack, $frame;\n}\n\nforeach my $k (sort { $a cmp $b } keys %collapsed) {\n\tprintf \"$k $collapsed{$k}\\n\";\n}\n"
  },
  {
    "path": "stackcollapse-vsprof.pl",
    "content": "#!/usr/bin/perl -w\n#\n# stackcollapse-vsprof.pl\n#\n# Parses the CSV file containing a call tree from a visual studio profiler and produces an output suitable for flamegraph.pl.\n#\n# USAGE: perl stackcollapse-vsprof.pl infile > outfile\n#\n# WORKFLOW:\n#\n# This example assumes you have visual studio 2015 installed.\n# \n# 1. Profile C++ your application using visual studio\n# 2. On visual studio, choose export the call tree as csv\n# 3. Generate a flamegraph: perl stackcollapse-vsprof CallTreeSummary.csv | perl flamegraph.pl > result_vsprof.svg\n#\n# INPUT EXAMPLE :\n#\n# Level,Function Name,Inclusive Samples,Exclusive Samples,Inclusive Samples %,Exclusive Samples %,Module Name,\n# 1,\"main\",\"8,735\",0,100.00,0.00,\"an_executable.exe\",\n# 2,\"testing::UnitTest::Run\",\"8,735\",0,100.00,0.00,\"an_executable.exe\",\n# 3,\"boost::trim_end_iter_select<std::iterator<std::val<std::types<char> > >,boost::is_classifiedF>\",306,16,3.50,0.18,\"an_executable.exe\",\n#\n# OUTPUT EXAMPLE :\n#\n# main;testing::UnitTest::Run;boost::trim_end_iter_select<std::iterator<std::val<std::types<char>>>,boost::is_classifiedF> 306\n\nuse strict;\n\nsub massage_function_names;\nsub parse_integer;\nsub print_stack_trace;\n\n# data initialization\nmy @stack = ();\nmy $line_number = 0;\nmy $previous_samples = 0;\n\nmy $num_args = $#ARGV + 1;\nif ($num_args != 1) {\n  print \"$ARGV[0]\\n\";\n  print \"Usage : stackcollapse-vsprof.pl <in.cvs> > out.txt\\n\";\n  exit;\n}\n\nmy $input_csv_file = $ARGV[0];\nmy $line_parser_rx = qr{\n  ^\\s*(\\d+?),            # level in the stack\n  (\"[^\"]+\" | [^,]+),     # function name (beware of spaces)\n  (\"[^\"]+\" | [^,]+),     # number of samples (beware of locale number formatting)\n}ox;\n\nopen(my $fh, '<', $input_csv_file) or die \"Can't read file '$input_csv_file' [$!]\\n\";\n\nwhile (my $current_line = <$fh>){\n  $line_number = $line_number + 1;\n\n  # to discard first line which typically contains headers\n  next if $line_number == 1;\n  next if $current_line =~ /^\\s*$/o;\n \n  ($current_line =~ $line_parser_rx) or die \"Error in regular expression at line $line_number : $current_line\\n\";\n\n  my $level = int $1;\n  my $function = massage_function_names($2);\n  my $samples = parse_integer($3);\n  my $stack_len = @stack;\n \n  #print \"[DEBUG] $line_number : $level $function $samples $stack_len\\n\";\n\n  next if not $level;\n  ($level <= $stack_len + 1) or die \"Error in stack at line $line_number : $current_line\\n\";\n\n  if ($level <= $stack_len) {\n\t\tprint_stack_trace(\\@stack, $previous_samples);\n    my $to_remove = $level - $stack_len - 1;\n    splice(@stack, $to_remove);\n  }\n\n  $stack_len < 1000 or die \"Stack overflow at line $line_number\";\n  push(@stack, $function);\n  $previous_samples = $samples;\n}\nprint_stack_trace(\\@stack, $previous_samples);\n\nsub massage_function_names {\n  return ($_[0] =~ s/\\s*|^\"|\"$//gro);\n}\n\nsub parse_integer {\n  return int ($_[0] =~ s/[., ]|^\"|\"$//gro);\n}\n\nsub print_stack_trace {\n  my ($stack_ref, $sample) = @_;\n\tmy $stack_trace = join(\";\", @$stack_ref);\n\tprint \"$stack_trace $sample\\n\";\n}\n"
  },
  {
    "path": "stackcollapse-vtune-mc.pl",
    "content": "#!/usr/bin/perl -w\n#\n# stackcollapse-vtune-mc.pl\n#\n# Parses the CSV file containing a call tree from Intel VTune memory-consumption profiler and produces an output suitable for flamegraph.pl.\n#\n# USAGE: perl stackcollapse-vtune-mc.pl [options] infile > outfile\n#\n# WORKFLOW:\n#\n# This assumes you have Intel VTune installed and on path (using Command Line)\n#\n# 1. Profile C++ application tachyon (example shipped with Intel VTune 2019):\n#\n#    amplxe-cl -collect memory-consumption -r mc_tachyon -- ./tachyon\n#\n# 2. Export raw VTune data to csv file:\n#    ### for Intel VTune 2019\n#    amplxe-cl -R top-down -call-stack-mode all \\\n#\t\t\t-column=\"Allocations:Self\",\"Allocation Size:Self\",\"Module\" \\\n#\t\t\t-report-out allocations.csv -format csv \\\n#\t\t\t-csv-delimiter comma -r mc_tachyon\n#\n# 3. Generate a flamegraph:\n#    ## Generate for allocations amount.\n#    perl stackcollapse-vtune-mc.pl allocations.csv > out.folded\n#    perl flamegraph.pl --countname=allocations out.folded > vtune_tachyon_mc.svg\n#\n#    ## Or you can generate for allocation size in bytes.\n#    perl stackcollapse-vtune-mc.pl -s allocations.csv > out.folded\n#    perl flamegraph.pl --countname=allocations out.folded > vtune_tachyon_mc_size.svg\n#\n# AUTHOR: Rohith Bakkannagari\n# 27-Nov-2019\tUnpluggedCoder\t\tForked from stackcollapse-vtune.pl, for memory-consumption flamegraph\n\nuse strict;\nuse Getopt::Long;\n\nsub usage {\n\tdie <<USAGE_END;\nUsage : $0 [options] allocations.csv > out.folded\\n\n\t--size\t\t# Accumulate allocation size in bytes instead of allocation counts.\\n\nNOTE : The csv file should exported by `amplxe-cl` tool with the exact -column parameter shows below.\n\tamplxe-cl -R top-down -call-stack-mode all \\\n\t\t-column=\"Allocations:Self\",\"Allocation Size:Self\",\"Module\" \\\n\t\t-report-out allocations.csv -format csv \\\n\t\t-csv-delimiter comma -r mc_tachyon\nUSAGE_END\n}\n\n# data initialization\nmy @stack = ();\nmy $rowCounter = 0; # flag for row number\n\nmy $accSize = '';\nGetOptions ('size' => \\$accSize)\nor usage();\n\nmy $numArgs = $#ARGV + 1;\nif ($numArgs != 1){\n\tusage();\n\texit;\n}\n\nmy $inputCSVFile = $ARGV[0];\nopen(my $fh, '<', $inputCSVFile) or die \"Can't read file '$inputCSVFile' [$!]\\n\";\n\nwhile (my $currLine = <$fh>){\n\t# discard warning line\n\tnext if $rowCounter == 0 && rindex($currLine, \"war:\", 0) == 0;\n\t$rowCounter = $rowCounter + 1;\n\t# to discard first row which typically contains headers\n\tnext if $rowCounter == 1;\n\tchomp $currLine;\n\t#VTune - sometimes the call stack information is enclosed in double quotes (?).  To remove double quotes.\n\t$currLine =~ s/\\\"//g;\n\n\t### for Intel VTune 2019\n\t### CSV header should be like below\n\t### Function Stack,Allocation Size:Self,Deallocation Size:Self,Allocations:Self,Module\n\t$currLine =~ /(\\s*)(.*?),([0-9]*?\\.?[0-9]*?),([0-9]*?\\.?[0-9]*?),([0-9]*?\\.?[0-9]*?),(.*)/ or die \"Error in regular expression on the current line $currLine\\n\";\n\tmy $func = $2.'('.$6.')';\t# function(module)\n\tmy $depth = length ($1);\n\tmy $allocBytes = $3; \t# allocation size\n\tmy $allocs = $5; \t\t# allocations\n\n\tmy $tempString = '';\n\t$stack [$depth] = $func;\n\tif ($accSize){\n\t\tnext if $allocBytes eq '';\n\t\tforeach my $i (0 .. $depth - 1) {\n\t\t\t$tempString = $tempString.$stack[$i].\";\";\n\t\t}\n\t\t$tempString = $tempString.$func.\" $allocBytes\\n\";\n\t} else {\n\t\tnext if $allocs == 0;\n\t\tforeach my $i (0 .. $depth - 1) {\n\t\t\t$tempString = $tempString.$stack[$i].\";\";\n\t\t}\n\t\t$tempString = $tempString.$func.\" $allocs\\n\";\n\t}\n\tprint \"$tempString\";\n}\n"
  },
  {
    "path": "stackcollapse-vtune.pl",
    "content": "#!/usr/bin/perl -w\r\n#\r\n# stackcollapse-vtune.pl\r\n#\r\n# Parses the CSV file containing a call tree from Intel VTune hotspots profiler and produces an output suitable for flamegraph.pl.\r\n#\r\n# USAGE: perl stackcollapse-vtune.pl infile > outfile\r\n#\r\n# WORKFLOW:\r\n#\r\n# This assumes you have Intel VTune installed and on path (using Command Line)\r\n#\r\n# 1. Profile C++ application tachyon_find_hotspots (example shipped with Intel VTune 2013):\r\n#\r\n#    amplxe-cl -collect hotspots -r result_vtune_tachyon -- ./tachyon_find_hotspots\r\n#\r\n# 2. Export raw VTune data to csv file:\r\n#\r\n##### VTune 2013 & 2015\r\n#   amplxe-cl -R top-down -report-out result_vtune_tachyon.csv -filter \"Function Stack\" -format csv -csv-delimiter comma -r result_vtune_tachyon\r\n#### VTune 2016\r\n#\t\tamplxe-cl.exe -R top-down -call-stack-mode all -column=\"CPU Time:Self\",\"Module\" -report-output result_vtune_tachyon.csv -filter \"Function Stack\" -format csv -csv-delimiter comma -r result_vtune_tachyon\r\n#\r\n# 3. Generate a flamegraph:\r\n#\r\n#    perl stackcollapse-vtune result_vtune_tachyon.csv | perl flamegraph.pl > result_vtune_tachyon.svg\r\n#\r\n# AUTHOR: Rohith Bakkannagari\r\n\r\nuse strict;\r\n\r\n# data initialization\r\nmy @stack = ();\r\nmy $rowCounter = 0; #flag for row number\r\n\r\nmy $numArgs = $#ARGV + 1;\r\nif ($numArgs != 1)\r\n{\r\nprint \"$ARGV[0]\\n\";\r\nprint \"Usage : stackcollapse-vtune.pl <out.cvs> > out.txt\\n\";\r\nexit;\r\n}\r\n\r\nmy $inputCSVFile = $ARGV[0];\r\nmy $funcOnly = '';\r\nmy $depth = 0;\r\nmy $selfTime = 0;\r\nmy $dllName = '';\r\n\r\nopen(my $fh, '<', $inputCSVFile) or die \"Can't read file '$inputCSVFile' [$!]\\n\";\r\n\r\nwhile (my $currLine = <$fh>){\r\n\t$rowCounter = $rowCounter + 1;\r\n\t# to discard first row which typically contains headers\r\n\tnext if $rowCounter == 1;\r\n\tchomp $currLine;\r\n\r\n\t### VTune 2013 & 2015\r\n\t#VTune - sometimes the call stack information is enclosed in double quotes (?).  To remove double quotes.  Not necessary for XCode instruments (MAC)\r\n\t$currLine =~ s/\\\"//g;\r\n\t$currLine =~ /(\\s*)(.*),(.*),.*,([0-9]*\\.?[0-9]+)/ or die \"Error in regular expression on the current line\\n\";\r\n\t$dllName = $3;\r\n\t$func = $dllName.'!'.$2; # Eg : m_lxe.dll!MathWorks::lxe::IrEngineDecorator::Apply\r\n\t$depth = length ($1);\r\n\t$selfTime = $4*1000; # selfTime in msec\r\n\t### VTune 2013 & 2015\r\n\r\n\t### VTune 2016\r\n\t# $currLine =~ /(\\s*)(.*?),([0-9]*\\.?[0-9]+?),(.*)/ or die \"Error in regular expression on the current line $currLine\\n\";\r\n\t#  if ($2 =~ /\\\"/)\r\n\t#  {\r\n\t# \t$currLine =~ /(\\s*)\\\"(.*?)\\\",([0-9]*\\.?[0-9]+?),(.*)/ or die \"Error in regular expression on the current line $currLine\\n\";\r\n\t#  \t$funcOnly = $2;\r\n\t#  \t$depth = length ($1);\r\n\t#  \t$selfTime = $3*1000; # selfTime in msec\r\n\t#  \t$dllName = $4;\r\n\t#  }\r\n\t#  else\r\n\t#  {\r\n\t#  \t$funcOnly = $2;\r\n\t#  \t$depth = length ($1);\r\n\t#  \t$selfTime = $3*1000; # selfTime in msec\r\n\t#  \t$dllName = $4;\r\n\t#  }\r\n\t#  my $func = $dllName.'!'.$funcOnly; # Eg : m_lxe.dll!MathWorks::lxe::IrEngineDecorator::Apply\r\n\t ### VTune 2016\r\n\r\n\tmy $tempString = '';\r\n\t$stack [$depth] = $func;\r\n\tforeach my $i (0 .. $depth - 1) {\r\n\t\t$tempString = $tempString.$stack[$i].\";\";\r\n\t}\r\n\t$tempString = $tempString.$func.\" $selfTime\\n\";\r\n\tif ($selfTime != 0){\r\n\t\tprint \"$tempString\";\r\n\t}\r\n}\r\n"
  },
  {
    "path": "stackcollapse-wcp.pl",
    "content": "#!/usr/bin/perl -ws\n#\n# stackcollapse-wcp  Collapse wallClockProfiler backtraces\n#\n# Parse a list of GDB backtraces as generated by https://github.com/jasonrohrer/wallClockProfiler\n#\n# Copyright 2014 Gabriel Corona. All rights reserved.\n# Portions Copyright 2020 Ștefan Talpalaru <stefantalpalaru@yahoo.com>\n#\n# CDDL HEADER START\n#\n# The contents of this file are subject to the terms of the\n# Common Development and Distribution License (the \"License\").\n# You may not use this file except in compliance with the License.\n#\n# You can obtain a copy of the license at docs/cddl1.txt or\n# http://opensource.org/licenses/CDDL-1.0.\n# See the License for the specific language governing permissions\n# and limitations under the License.\n#\n# When distributing Covered Code, include this CDDL HEADER in each\n# file and include the License file at docs/cddl1.txt.\n# If applicable, add the following below this CDDL HEADER, with the\n# fields enclosed by brackets \"[]\" replaced with your own identifying\n# information: Portions Copyright [yyyy] [name of copyright owner]\n#\n# CDDL HEADER END\n\nuse strict;\n\nmy $current = \"\";\nmy $start_processing = 0;\nmy $samples = 0;\nmy %stacks;\n\nwhile(<>) {\n  s/^\\s+|\\s+$//g;\n\n  if (m/^Full stacks/) {\n    $start_processing = 1;\n    next;\n  }\n\n  if (not $start_processing) {\n      next;\n  }\n\n  if(m/^\\d+\\.\\d+% =+ \\((\\d+) samples\\)/) {\n    # 99.791% ===================================== (17194 samples)\n    $samples = $1;\n    next;\n  } elsif (m/^\\d+: (.*)$/) {\n    # 1: poll__YNjd8fE6xG8CRNwfLnrx0g_2   (at /mnt/sde1/storage/nim-beacon-chain-clean/vendor/nim-chronos/chronos/asyncloop.nim:343)\n    my $function = $1;\n    if ($current eq \"\") {\n      $current = $function;\n    } else {\n      $current = $function . \";\" . $current;\n    }\n  } elsif (m/^$/ and $current ne \"\") {\n    $stacks{$current} += $samples;\n    $current = \"\";\n  }\n}\n\nforeach my $k (sort { $a cmp $b } keys %stacks) {\n  print \"$k $stacks{$k}\\n\";\n}\n\n"
  },
  {
    "path": "stackcollapse-xdebug.php",
    "content": "#!/usr/bin/php\n<?php\n#\n# Copyright 2018 Miriam Lauter (lauter.miriam@gmail.com).  All rights reserved.\n#\n#  This program is free software; you can redistribute it and/or\n#  modify it under the terms of the GNU General Public License\n#  as published by the Free Software Foundation; either version 2\n#  of the License, or (at your option) any later version.\n#\n#  This program is distributed in the hope that it will be useful,\n#  but WITHOUT ANY WARRANTY; without even the implied warranty of\n#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n#  GNU General Public License for more details.\n#\n#  You should have received a copy of the GNU General Public License\n#  along with this program; if not, write to the Free Software Foundation,\n#  Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.\n#\n#  (http://www.gnu.org/copyleft/gpl.html)\n#\n# 13-Apr-2018   Miriam Lauter   Created this.\n\nini_set('error_log', null);\n$optind = null;\n$args = getopt(\"htc\", [\"help\"], $optind);\nif (isset($args['h']) || isset($args['help'])) {\n    usage();\n}\n\nfunction usage($exit = 0) {\n    echo <<<EOT\nstackcollapse-xdebug.php  collapse php function traces into single lines.\n\nParses php samples generated by xdebug with xdebug.trace_format = 1\nand outputs stacks as single lines, with methods separated by semicolons,\nand then a space and an occurrence count. For use with flamegraph.pl.\nSee https://github.com/brendangregg/FlameGraph.\n\nUSAGE: ./stackcollapse-xdebug.php [OPTIONS] infile > outfile\n    -h --help    Show this message\n    -t           Weight stack counts by duration using the time index in the trace (default)\n    -c           Invocation counts only. Simply count stacks in the trace and sum duplicates, don't weight by duration.\n\nExample input:\nFor more info on xdebug and generating traces see\nhttps://xdebug.org/docs/execution_trace.\n\nVersion: 2.0.0RC4-dev\nTRACE START [2007-05-06 18:29:01]\n1    0    0    0.010870    114112    {main}    1    ../trace.php    0\n2    1    0    0.032009    114272    str_split    0    ../trace.php    8\n2    1    1    0.032073    116632\n2    2    0    0.033505    117424    ret_ord    1    ../trace.php    10\n3    3    0    0.033531    117584    ord    0    ../trace.php    5\n3    3    1    0.033551    117584\n...\nTRACE END   [2007-05-06 18:29:01]\n\nExample output:\n\n- c\n{main};str_split 1\n{main};ret_ord;ord 6\n\n-t\n{main} 23381\n{main};str_split 64\n{main};ret_ord 215\n{main};ret_ord;ord 106\n\nEOT;\n\n    exit($exit);\n}\n\nfunction collapseStack(array $stack, string $func_name_key): string {\n    return implode(';', array_column($stack, $func_name_key));\n}\n\nfunction addCurrentStackToStacks(array $stack, float $dur, array &$stacks) {\n    $collapsed      = implode(';', $stack);\n    $duration       = SCALE_FACTOR * $dur;\n\n    if (array_key_exists($collapsed, $stacks)) {\n        $stacks[$collapsed] += $duration;\n    } else {\n        $stacks[$collapsed] = $duration;\n    }\n}\n\nfunction isEOTrace(string $l) {\n    $pattern = \"/^(\\\\t|TRACE END)/\";\n    return preg_match($pattern, $l);\n}\n\n$filename = $argv[$optind] ?? null;\nif ($filename === null) {\n    usage(1);\n}\n\n$do_time = !isset($args['c']);\n\n// First make sure our file is consistently formatted with only one \\t delimiting each field\n$out = [];\n$retval = null;\nexec(\"sed -in 's/\\t\\+/\\t/g' \" . escapeshellarg($filename), $out, $retval);\nif ($retval !== 0) {\n    usage(1);\n}\n\n$handle = fopen($filename, 'r');\n\nif ($handle === false) {\n    echo \"Unable to open $filename \\n\\n\";\n    usage(1);\n}\n\n// Loop till we find TRACE START\nwhile ($l = fgets($handle)) {\n    if (strpos($l, \"TRACE START\") === 0) {\n        break;\n    }\n}\n\nconst SCALE_FACTOR = 1000000;\n$stacks = [];\n$current_stack = [];\n$was_exit = false;\n$prev_start_time = 0;\n\nif ($do_time) {\n    // Weight counts by duration\n    // Xdebug trace time indices have 6 sigfigs of precision\n    // We have a perfect trace, but let's instead pretend that\n    // this was collected by sampling at 10^6 Hz\n    // then each millionth of a second this stack took to execute is 1 count\n    while ($l = fgets($handle)) {\n        if (isEOTrace($l)) {\n            break;\n        }\n\n        $parts = explode(\"\\t\", $l);\n        list($level, $fn_no, $is_exit, $time) = $parts;\n\n        if ($is_exit) {\n            if (empty($current_stack)) {\n                echo \"[WARNING] Found function exit without corresponding entrance. Discarding line. Check your input.\\n\";\n                continue;\n            }\n\n            addCurrentStackToStacks($current_stack, $time - $prev_start_time, $stacks);\n            array_pop($current_stack);\n        } else {\n            $func_name = $parts[5];\n\n            if (!empty($current_stack)) {\n                addCurrentStackToStacks($current_stack, $time - $prev_start_time, $stacks);\n            }\n\n            $current_stack[] = $func_name;\n        }\n        $prev_start_time = $time;\n    }\n} else {\n    // Counts only\n    while ($l = fgets($handle)) {\n        if (isEOTrace($l)) {\n            break;\n        }\n\n        $parts = explode(\"\\t\", $l);\n        list($level, $fn_no, $is_exit) = $parts;\n\n        if ($is_exit === \"1\") {\n            if (!$was_exit) {\n                $collapsed = implode(\";\", $current_stack);\n                if (array_key_exists($collapsed, $stacks)) {\n                    $stacks[$collapsed]++;\n                } else {\n                    $stacks[$collapsed] = 1;\n                }\n            }\n\n            array_pop($current_stack);\n            $was_exit = true;\n        } else {\n            $func_name = $parts[5];\n            $current_stack[] = $func_name;\n            $was_exit = false;\n        }\n    }\n}\n\nforeach ($stacks as $stack => $count) {\n    echo \"$stack $count\\n\";\n}\n"
  },
  {
    "path": "stackcollapse.pl",
    "content": "#!/usr/bin/perl -w\n#\n# stackcollapse.pl\tcollapse multiline stacks into single lines.\n#\n# Parses a multiline stack followed by a number on a separate line, and\n# outputs a semicolon separated stack followed by a space and the number.\n# If memory addresses (+0xd) are present, they are stripped, and resulting\n# identical stacks are colased with their counts summed.\n#\n# USAGE: ./stackcollapse.pl infile > outfile\n#\n# Example input:\n#\n#  unix`i86_mwait+0xd\n#  unix`cpu_idle_mwait+0xf1\n#  unix`idle+0x114\n#  unix`thread_start+0x8\n#  1641\n#\n# Example output:\n#\n#  unix`thread_start;unix`idle;unix`cpu_idle_mwait;unix`i86_mwait 1641\n#\n# Input may contain many stacks, and can be generated using DTrace.  The\n# first few lines of input are skipped (see $headerlines).\n#\n# Copyright 2011 Joyent, Inc.  All rights reserved.\n# Copyright 2011 Brendan Gregg.  All rights reserved.\n#\n# CDDL HEADER START\n#\n# The contents of this file are subject to the terms of the\n# Common Development and Distribution License (the \"License\").\n# You may not use this file except in compliance with the License.\n#\n# You can obtain a copy of the license at docs/cddl1.txt or\n# http://opensource.org/licenses/CDDL-1.0.\n# See the License for the specific language governing permissions\n# and limitations under the License.\n#\n# When distributing Covered Code, include this CDDL HEADER in each\n# file and include the License file at docs/cddl1.txt.\n# If applicable, add the following below this CDDL HEADER, with the\n# fields enclosed by brackets \"[]\" replaced with your own identifying\n# information: Portions Copyright [yyyy] [name of copyright owner]\n#\n# CDDL HEADER END\n#\n# 14-Aug-2011\tBrendan Gregg\tCreated this.\n\nuse strict;\n\nmy $headerlines = 3;\t\t# number of input lines to skip\nmy $includeoffset = 0;\t\t# include function offset (except leafs)\nmy %collapsed;\n\nsub remember_stack {\n\tmy ($stack, $count) = @_;\n\t$collapsed{$stack} += $count;\n}\n\nmy $nr = 0;\nmy @stack;\n\nforeach (<>) {\n\tnext if $nr++ < $headerlines;\n\tchomp;\n\n\tif (m/^\\s*(\\d+)+$/) {\n\t\tmy $count = $1;\n\t\tmy $joined = join(\";\", @stack);\n\n\t\t# trim leaf offset if these were retained:\n\t\t$joined =~ s/\\+[^+]*$// if $includeoffset;\n\n\t\tremember_stack($joined, $count);\n\t\t@stack = ();\n\t\tnext;\n\t}\n\n\tnext if (m/^\\s*$/);\n\n\tmy $frame = $_;\n\t$frame =~ s/^\\s*//;\n\t$frame =~ s/\\+[^+]*$// unless $includeoffset;\n\n\t# Remove arguments from C++ function names:\n\t$frame =~ s/(::.*)[(<].*/$1/;\n\n\t$frame = \"-\" if $frame eq \"\";\n\n        my @inline;\n        for (split /\\->/, $frame) {\n            my $func = $_;\n\n            # Strip out L and ; included in java stacks\n            $func =~ tr/\\;/:/;\n            $func =~ s/^L//;\n            $func .= \"_[i]\" if scalar(@inline) > 0; #inlined\n\n            push @inline, $func;\n        }\n\n\tunshift @stack, @inline;\n}\n\nforeach my $k (sort { $a cmp $b } keys %collapsed) {\n\tprint \"$k $collapsed{$k}\\n\";\n}\n"
  },
  {
    "path": "test/perf-cycles-instructions-01.txt",
    "content": "# ========\n# captured on: Thu Aug 17 14:14:43 2017\n# hostname : bgregg-lgud2\n# os release : 4.13.0-rc1\n# perf version : 4.13.0-rc1\n# arch : x86_64\n# nrcpus online : 8\n# nrcpus avail : 8\n# cpudesc : Intel(R) Xeon(R) CPU E3-1245 v5 @ 3.50GHz\n# cpuid : GenuineIntel,6,94,3\n# total memory : 8058796 kB\n# cmdline : /usr/bin/perf record -e cycles -e instructions -c 100000000 -a --call-graph=lbr -- sleep 1 \n# event : name = cycles, , id = { 550, 551, 552, 553, 554, 555, 556, 557 }, size = 112, { sample_period, sample_freq } = 100000000, sample_type = IP|TID|TIME|CALLCHAIN|ID|CPU|BRANCH_STACK, read_format = ID, disabled = 1, inherit = 1, mmap = 1, comm = 1, task = 1, sample_id_all = 1, exclude_guest = 1, mmap2 = 1, comm_exec = 1, branch_sample_type = USER|CALL_STACK|NO_FLAGS|NO_CYCLES\n# event : name = instructions, , id = { 558, 559, 560, 561, 562, 563, 564, 565 }, size = 112, config = 0x1, { sample_period, sample_freq } = 100000000, sample_type = IP|TID|TIME|CALLCHAIN|ID|CPU|BRANCH_STACK, read_format = ID, disabled = 1, inherit = 1, sample_id_all = 1, exclude_guest = 1, branch_sample_type = USER|CALL_STACK|NO_FLAGS|NO_CYCLES\n# HEADER_CPU_TOPOLOGY info available, use -I to display\n# HEADER_NUMA_TOPOLOGY info available, use -I to display\n# pmu mappings: intel_pt = 7, intel_bts = 6, uncore_arb = 13, uncore_cbox_3 = 12, cstate_pkg = 16, breakpoint = 5, uncore_cbox_1 = 10, power = 14, cpu = 4, software = 1, uncore_cbox_2 = 11, uncore_cbox_0 = 9, cstate_core = 15, tracepoint = 2, msr = 8\n# HEADER_CACHE info available, use -I to display\n# missing features: HEADER_TRACING_DATA HEADER_BRANCH_STACK HEADER_GROUP_DESC HEADER_AUXTRACE HEADER_STAT \n# ========\n#\nnoploop 21796 [001] 1410597.984841: instructions: \n\t             993 main (/root/noploop)\n\nnoploop 21797 [002] 1410597.984850: instructions: \n\t             69b main (/root/noploop)\n\nnoploop 21796 [001] 1410597.992030: instructions: \n\t             7df main (/root/noploop)\n\nnoploop 21797 [002] 1410597.992037: instructions: \n\t             883 main (/root/noploop)\n\ncksum 21804 [000] 1410597.994832: instructions: \n\t            1ad1 cksum (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410597.999214: instructions: \n\t             6e7 main (/root/noploop)\n\nnoploop 21797 [002] 1410597.999221: instructions: \n\t             917 main (/root/noploop)\n\ncksum 21804 [000] 1410598.006198:       cycles: \n\t            1ad1 cksum (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.006210:       cycles: \n\t             6a7 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.006219:       cycles: \n\t             68f main (/root/noploop)\n\nnoploop 21796 [001] 1410598.006401: instructions: \n\t             7a7 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.006407: instructions: \n\t             78f main (/root/noploop)\n\ncksum 21804 [000] 1410598.011998: instructions: \n\t            1ad1 cksum (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.013586: instructions: \n\t             797 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.013593: instructions: \n\t             857 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.020771: instructions: \n\t             6d7 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.020778: instructions: \n\t             763 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.027957: instructions: \n\t             7bb main (/root/noploop)\n\nnoploop 21797 [002] 1410598.027963: instructions: \n\t             817 main (/root/noploop)\n\ncksum 21804 [000] 1410598.029069: instructions: \n\t            1ad1 cksum (/usr/bin/cksum)\n\ncksum 21804 [000] 1410598.034839:       cycles: \n\t          4e85d9 ext4_file_read_iter (/lib/modules/4.13.0-rc1/build/vmlinux)\n\nnoploop 21796 [001] 1410598.034851:       cycles: \n\t             9e7 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.034861:       cycles: \n\t             8df main (/root/noploop)\n\nnoploop 21796 [001] 1410598.035143: instructions: \n\t             7c7 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.035148: instructions: \n\t             7fb main (/root/noploop)\n\nnoploop 21796 [001] 1410598.042328: instructions: \n\t             89f main (/root/noploop)\n\nnoploop 21797 [002] 1410598.042333: instructions: \n\t             98b main (/root/noploop)\n\ncksum 21804 [000] 1410598.046169: instructions: \n\t          4e85d9 ext4_file_read_iter (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          44b0fe __vfs_read (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          44bd56 vfs_read (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          44d495 sys_read (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          af30bb entry_SYSCALL_64_fastpath (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t           7afe0 _IO_file_read (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t           7ad41 _IO_file_xsgetn (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t           79b8f __GI___fread_unlocked (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1b23 cksum (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.049514: instructions: \n\t             907 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.049518: instructions: \n\t             9ff main (/root/noploop)\n\nnoploop 21796 [001] 1410598.056699: instructions: \n\t             87b main (/root/noploop)\n\nnoploop 21797 [002] 1410598.056703: instructions: \n\t             743 main (/root/noploop)\n\ncksum 21804 [000] 1410598.063350: instructions: \n\t            1ad4 cksum (/usr/bin/cksum)\n\ncksum 21804 [000] 1410598.063483:       cycles: \n\t            1ab5 cksum (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.063493:       cycles: \n\t             773 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.063503:       cycles: \n\t             6e3 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.063886: instructions: \n\t             6ff main (/root/noploop)\n\nnoploop 21797 [002] 1410598.063890: instructions: \n\t             8d3 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.071069: instructions: \n\t             6eb main (/root/noploop)\n\nnoploop 21797 [002] 1410598.071074: instructions: \n\t             67b main (/root/noploop)\n\nnoploop 21796 [001] 1410598.078254: instructions: \n\t             8a3 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.078259: instructions: \n\t             80b main (/root/noploop)\n\ncksum 21804 [000] 1410598.080529: instructions: \n\t            1ad1 cksum (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.085439: instructions: \n\t             823 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.085444: instructions: \n\t             6f7 main (/root/noploop)\n\ncksum 21804 [000] 1410598.092123:       cycles: \n\t    552c0000552c [unknown] ([unknown])\n\nnoploop 21796 [001] 1410598.092134:       cycles: \n\t             81f main (/root/noploop)\n\nnoploop 21797 [002] 1410598.092144:       cycles: \n\t             6ff main (/root/noploop)\n\nnoploop 21796 [001] 1410598.092625: instructions: \n\t             8ff main (/root/noploop)\n\nnoploop 21797 [002] 1410598.092630: instructions: \n\t             74b main (/root/noploop)\n\nnoploop 21796 [001] 1410598.099811: instructions: \n\t             6e7 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.099816: instructions: \n\t             75f main (/root/noploop)\n\nnoploop 21796 [001] 1410598.106996: instructions: \n\t             8b3 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.107000: instructions: \n\t             847 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.114182: instructions: \n\t             7f3 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.114186: instructions: \n\t             7ff main (/root/noploop)\n\ncksum 21807 [004] 1410598.116168: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.120777:       cycles: \n\t             a23 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.120786:       cycles: \n\t             6ff main (/root/noploop)\n\nnoploop 21796 [001] 1410598.121368: instructions: \n\t             91b main (/root/noploop)\n\nnoploop 21797 [002] 1410598.121372: instructions: \n\t             893 main (/root/noploop)\n\ncksum 21807 [004] 1410598.127157:       cycles: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.128553: instructions: \n\t             8f3 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.128557: instructions: \n\t             a53 main (/root/noploop)\n\ncksum 21807 [004] 1410598.133347: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.135738: instructions: \n\t             90b main (/root/noploop)\n\nnoploop 21797 [002] 1410598.135743: instructions: \n\t             9cf main (/root/noploop)\n\nnoploop 21796 [001] 1410598.142921: instructions: \n\t             6fb main (/root/noploop)\n\nnoploop 21797 [002] 1410598.142926: instructions: \n\t             823 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.149418:       cycles: \n\t             9ef main (/root/noploop)\n\nnoploop 21797 [002] 1410598.149428:       cycles: \n\t             94f main (/root/noploop)\n\nnoploop 21796 [001] 1410598.150108: instructions: \n\t             8f3 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.150113: instructions: \n\t             9cf main (/root/noploop)\n\ncksum 21807 [004] 1410598.150509: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\ncksum 21807 [004] 1410598.155801:       cycles: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.157294: instructions: \n\t             69b main (/root/noploop)\n\nnoploop 21797 [002] 1410598.157298: instructions: \n\t             8e3 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.164479: instructions: \n\t             673 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.164483: instructions: \n\t             97b main (/root/noploop)\n\ncksum 21807 [004] 1410598.167744: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.171664: instructions: \n\t             6e7 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.171668: instructions: \n\t             977 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.178060:       cycles: \n\t             a4b main (/root/noploop)\n\nnoploop 21797 [002] 1410598.178069:       cycles: \n\t             79f main (/root/noploop)\n\nnoploop 21796 [001] 1410598.178849: instructions: \n\t             73f main (/root/noploop)\n\nnoploop 21797 [002] 1410598.178853: instructions: \n\t             96f main (/root/noploop)\n\ncksum 21807 [004] 1410598.184443:       cycles: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\ncksum 21807 [004] 1410598.184923: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.186034: instructions: \n\t             723 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.186038: instructions: \n\t             a17 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.193219: instructions: \n\t             70b main (/root/noploop)\n\nnoploop 21797 [002] 1410598.193223: instructions: \n\t             8af main (/root/noploop)\n\nnoploop 21796 [001] 1410598.200405: instructions: \n\t             9c7 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.200408: instructions: \n\t             83f main (/root/noploop)\n\ncksum 21807 [004] 1410598.202111: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.206701:       cycles: \n\t             76b main (/root/noploop)\n\nnoploop 21797 [002] 1410598.206711:       cycles: \n\t             807 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.207592: instructions: \n\t             78b main (/root/noploop)\n\nnoploop 21797 [002] 1410598.207595: instructions: \n\t             7fb main (/root/noploop)\n\ncksum 21807 [004] 1410598.213085:       cycles: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.214776: instructions: \n\t             6d7 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.214779: instructions: \n\t             6ef main (/root/noploop)\n\ncksum 21807 [004] 1410598.219228: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.221961: instructions: \n\t             7eb main (/root/noploop)\n\nnoploop 21797 [002] 1410598.221964: instructions: \n\t             86f main (/root/noploop)\n\nnoploop 21797 [002] 1410598.229149: instructions: \n\t             96f main (/root/noploop)\n\nnoploop 21796 [001] 1410598.229155: instructions: \n\t             87f main (/root/noploop)\n\nnoploop 21796 [001] 1410598.235343:       cycles: \n\t             8e7 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.235353:       cycles: \n\t             76b main (/root/noploop)\n\ncksum 21807 [004] 1410598.236321: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.236337: instructions: \n\t             95f main (/root/noploop)\n\nnoploop 21796 [001] 1410598.236342: instructions: \n\t             8db main (/root/noploop)\n\ncksum 21807 [004] 1410598.241728:       cycles: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.243521: instructions: \n\t             993 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.243527: instructions: \n\t             74b main (/root/noploop)\n\nnoploop 21797 [002] 1410598.250705: instructions: \n\t             8cf main (/root/noploop)\n\nnoploop 21796 [001] 1410598.250711: instructions: \n\t             74f main (/root/noploop)\n\ncksum 21807 [004] 1410598.253484: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.257890: instructions: \n\t             937 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.257896: instructions: \n\t             6ef main (/root/noploop)\n\nnoploop 21796 [001] 1410598.263985:       cycles: \n\t             937 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.263994:       cycles: \n\t             867 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.265076: instructions: \n\t             9b3 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.265082: instructions: \n\t             953 main (/root/noploop)\n\ncksum 21807 [004] 1410598.270369:       cycles: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\ncksum 21807 [004] 1410598.270672: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.272261: instructions: \n\t             6d7 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.272267: instructions: \n\t             8ff main (/root/noploop)\n\nnoploop 21797 [002] 1410598.279446: instructions: \n\t             6c7 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.279452: instructions: \n\t             91f main (/root/noploop)\n\nnoploop 21797 [002] 1410598.286631: instructions: \n\t             76f main (/root/noploop)\n\nnoploop 21796 [001] 1410598.286636: instructions: \n\t             813 main (/root/noploop)\n\ncksum 21807 [004] 1410598.287836: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.292627:       cycles: \n\t             973 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.292636:       cycles: \n\t             6cf main (/root/noploop)\n\nnoploop 21797 [002] 1410598.293818: instructions: \n\t             86b main (/root/noploop)\n\nnoploop 21796 [001] 1410598.293823: instructions: \n\t             953 main (/root/noploop)\n\ncksum 21807 [004] 1410598.299012:       cycles: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.301003: instructions: \n\t             85b main (/root/noploop)\n\nnoploop 21796 [001] 1410598.301008: instructions: \n\t             85b main (/root/noploop)\n\ncksum 21807 [004] 1410598.304899: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.308188: instructions: \n\t             853 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.308194: instructions: \n\t             a4f main (/root/noploop)\n\nnoploop 21797 [002] 1410598.315372: instructions: \n\t             80b main (/root/noploop)\n\nnoploop 21796 [001] 1410598.315377: instructions: \n\t             8a7 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.321268:       cycles: \n\t             923 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.321278:       cycles: \n\t             943 main (/root/noploop)\n\ncksum 21807 [004] 1410598.322082: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.322558: instructions: \n\t             7ab main (/root/noploop)\n\nnoploop 21796 [001] 1410598.322564: instructions: \n\t             9a3 main (/root/noploop)\n\ncksum 21807 [004] 1410598.327656:       cycles: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.329743: instructions: \n\t             93b main (/root/noploop)\n\nnoploop 21796 [001] 1410598.329749: instructions: \n\t             973 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.336927: instructions: \n\t             6ab main (/root/noploop)\n\nnoploop 21796 [001] 1410598.336934: instructions: \n\t             8c7 main (/root/noploop)\n\ncksum 21807 [004] 1410598.339259: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.344113: instructions: \n\t             7e3 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.344119: instructions: \n\t             8cb main (/root/noploop)\n\nnoploop 21796 [001] 1410598.349909:       cycles: \n\t             6d3 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.349919:       cycles: \n\t             877 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.351297: instructions: \n\t             9b7 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.351304: instructions: \n\t             68b main (/root/noploop)\n\ncksum 21807 [004] 1410598.356297:       cycles: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\ncksum 21807 [004] 1410598.356460: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.358482: instructions: \n\t             75f main (/root/noploop)\n\nnoploop 21796 [001] 1410598.358489: instructions: \n\t             a3b main (/root/noploop)\n\nnoploop 21797 [002] 1410598.365667: instructions: \n\t             8f3 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.365674: instructions: \n\t             a13 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.372852: instructions: \n\t             a3f main (/root/noploop)\n\nnoploop 21796 [001] 1410598.372859: instructions: \n\t             737 main (/root/noploop)\n\ncksum 21807 [004] 1410598.373647: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.378550:       cycles: \n\t             7d3 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.378560:       cycles: \n\t             873 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.380038: instructions: \n\t             74f main (/root/noploop)\n\nnoploop 21796 [001] 1410598.380045: instructions: \n\t             91b main (/root/noploop)\n\ncksum 21807 [004] 1410598.384940:       cycles: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.387221: instructions: \n\t             8c7 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.387229: instructions: \n\t             72f main (/root/noploop)\n\ncksum 21807 [004] 1410598.390867: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.394407: instructions: \n\t             66b main (/root/noploop)\n\nnoploop 21796 [001] 1410598.394414: instructions: \n\t             a23 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.401592: instructions: \n\t             85f main (/root/noploop)\n\nnoploop 21796 [001] 1410598.401598: instructions: \n\t             7b7 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.407192:       cycles: \n\t             77f main (/root/noploop)\n\nnoploop 21797 [002] 1410598.407201:       cycles: \n\t             9a7 main (/root/noploop)\n\ncksum 21807 [004] 1410598.408043: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.408778: instructions: \n\t             757 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.408784: instructions: \n\t             73f main (/root/noploop)\n\ncksum 21807 [004] 1410598.413583:       cycles: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.415963: instructions: \n\t             6c3 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.415969: instructions: \n\t             75f main (/root/noploop)\n\nnoploop 21797 [002] 1410598.423147: instructions: \n\t             85b main (/root/noploop)\n\nnoploop 21796 [001] 1410598.423153: instructions: \n\t             953 main (/root/noploop)\n\ncksum 21807 [004] 1410598.425233: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.430332: instructions: \n\t             a17 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.430338: instructions: \n\t             a1f main (/root/noploop)\n\nnoploop 21796 [001] 1410598.435833:       cycles: \n\t             a4f main (/root/noploop)\n\nnoploop 21797 [002] 1410598.435843:       cycles: \n\t             7e3 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.437519: instructions: \n\t             8eb main (/root/noploop)\n\nnoploop 21796 [001] 1410598.437525: instructions: \n\t             a17 main (/root/noploop)\n\ncksum 21807 [004] 1410598.442225:       cycles: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\ncksum 21807 [004] 1410598.442373: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.444704: instructions: \n\t             7e7 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.444710: instructions: \n\t             87f main (/root/noploop)\n\nnoploop 21797 [002] 1410598.451889: instructions: \n\t             6c7 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.451912: instructions: \n\t             99f main (/root/noploop)\n\nnoploop 21797 [002] 1410598.459073: instructions: \n\t             87b main (/root/noploop)\n\nnoploop 21796 [001] 1410598.459096: instructions: \n\t             9cb main (/root/noploop)\n\ncksum 21807 [004] 1410598.459586: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.464475:       cycles: \n\t             6cf main (/root/noploop)\n\nnoploop 21797 [002] 1410598.464485:       cycles: \n\t             76f main (/root/noploop)\n\nnoploop 21797 [002] 1410598.466259: instructions: \n\t             90b main (/root/noploop)\n\nnoploop 21796 [001] 1410598.466283: instructions: \n\t             9db main (/root/noploop)\n\ncksum 21807 [004] 1410598.470867:       cycles: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.473443: instructions: \n\t             877 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.473468: instructions: \n\t             a37 main (/root/noploop)\n\ncksum 21807 [004] 1410598.476672: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.480628: instructions: \n\t             6f3 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.480652: instructions: \n\t             9df main (/root/noploop)\n\nnoploop 21797 [002] 1410598.487813: instructions: \n\t             93b main (/root/noploop)\n\nnoploop 21796 [001] 1410598.487837: instructions: \n\t             9b7 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.493116:       cycles: \n\t             7ef main (/root/noploop)\n\nnoploop 21797 [002] 1410598.493126:       cycles: \n\t             89b main (/root/noploop)\n\ncksum 21807 [004] 1410598.493741: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.494998: instructions: \n\t             6db main (/root/noploop)\n\nnoploop 21796 [001] 1410598.495022: instructions: \n\t             7cf main (/root/noploop)\n\ncksum 21807 [004] 1410598.499510:       cycles: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.502183: instructions: \n\t             8c3 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.502207: instructions: \n\t             797 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.509368: instructions: \n\t             70f main (/root/noploop)\n\nnoploop 21796 [001] 1410598.509392: instructions: \n\t             987 main (/root/noploop)\n\ncksum 21807 [004] 1410598.510883: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.516553: instructions: \n\t             70b main (/root/noploop)\n\nnoploop 21796 [001] 1410598.516577: instructions: \n\t             a07 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.521758:       cycles: \n\t             9c7 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.521768:       cycles: \n\t             78f main (/root/noploop)\n\nnoploop 21797 [002] 1410598.523740: instructions: \n\t             8c3 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.523763: instructions: \n\t             793 main (/root/noploop)\n\ncksum 21807 [004] 1410598.528071: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\ncksum 21807 [004] 1410598.528153:       cycles: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.530923: instructions: \n\t             673 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.530947: instructions: \n\t             8cb main (/root/noploop)\n\nnoploop 21797 [002] 1410598.538108: instructions: \n\t             7fb main (/root/noploop)\n\nnoploop 21796 [001] 1410598.538132: instructions: \n\t             887 main (/root/noploop)\n\ncksum 21807 [004] 1410598.545275: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.545293: instructions: \n\t             703 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.545317: instructions: \n\t             7db main (/root/noploop)\n\nnoploop 21796 [001] 1410598.550399:       cycles: \n\t             9ab main (/root/noploop)\n\nnoploop 21797 [002] 1410598.550409:       cycles: \n\t             9e7 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.552479: instructions: \n\t             89f main (/root/noploop)\n\nnoploop 21796 [001] 1410598.552503: instructions: \n\t             9c7 main (/root/noploop)\n\ncksum 21807 [004] 1410598.556794:       cycles: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.559664: instructions: \n\t             9bf main (/root/noploop)\n\nnoploop 21796 [001] 1410598.559688: instructions: \n\t             947 main (/root/noploop)\n\ncksum 21807 [004] 1410598.562462: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.566847: instructions: \n\t             a13 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.566871: instructions: \n\t             9af main (/root/noploop)\n\nnoploop 21797 [002] 1410598.574032: instructions: \n\t             7fb main (/root/noploop)\n\nnoploop 21796 [001] 1410598.574056: instructions: \n\t             8f0 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.579040:       cycles: \n\t             7af main (/root/noploop)\n\nnoploop 21797 [002] 1410598.579050:       cycles: \n\t             75f main (/root/noploop)\n\ncksum 21807 [004] 1410598.579636: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.581218: instructions: \n\t             8d7 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.581604: instructions: \n\t             717 main (/root/noploop)\n\ncksum 21807 [004] 1410598.585437:       cycles: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.588402: instructions: \n\t             8db main (/root/noploop)\n\nnoploop 21796 [001] 1410598.589229: instructions: \n\t             9e4 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.595587: instructions: \n\t             8d3 main (/root/noploop)\n\ncksum 21807 [004] 1410598.596815: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.596855: instructions: \n\t             6ef main (/root/noploop)\n\nnoploop 21797 [002] 1410598.602771: instructions: \n\t             947 main (/root/noploop)\n\nswapper     0 [005] 1410598.603979:       cycles: \n\t          af2bfe poll_idle (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          956752 cpuidle_enter_state (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          956957 cpuidle_enter (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2c8623 call_cpuidle (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2c88c9 do_idle (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2c8b13 cpu_startup_entry (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          252886 start_secondary (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2000cf verify_cpu (/lib/modules/4.13.0-rc1/build/vmlinux)\n\nnoploop 21796 [001] 1410598.604482: instructions: \n\t             928 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.607682:       cycles: \n\t             6c4 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.607691:       cycles: \n\t             893 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.609957: instructions: \n\t             733 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.612110: instructions: \n\t             67f main (/root/noploop)\n\ncksum 21807 [004] 1410598.613988: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\ncksum 21807 [004] 1410598.614079:       cycles: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.617142: instructions: \n\t             75b main (/root/noploop)\n\nnoploop 21796 [001] 1410598.619736: instructions: \n\t             6b3 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.624328: instructions: \n\t             8f7 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.627360: instructions: \n\t             a18 main (/root/noploop)\n\ncksum 21807 [004] 1410598.631186: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.631513: instructions: \n\t             a0b main (/root/noploop)\n\nswapper     0 [005] 1410598.632619:       cycles: \n\t          af2bfe poll_idle (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          956752 cpuidle_enter_state (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          956957 cpuidle_enter (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2c8623 call_cpuidle (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2c88c9 do_idle (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2c8b13 cpu_startup_entry (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          252886 start_secondary (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2000cf verify_cpu (/lib/modules/4.13.0-rc1/build/vmlinux)\n\nnoploop 21796 [001] 1410598.634987: instructions: \n\t             66b main (/root/noploop)\n\nnoploop 21796 [001] 1410598.636324:       cycles: \n\t             92c main (/root/noploop)\n\nnoploop 21797 [002] 1410598.636333:       cycles: \n\t             6e7 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.638698: instructions: \n\t             8a3 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.642614: instructions: \n\t             8ef main (/root/noploop)\n\ncksum 21807 [004] 1410598.642721:       cycles: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\t           203ef __libc_start_main (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1724 _start (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.645883: instructions: \n\t             7e7 main (/root/noploop)\n\ncksum 21807 [004] 1410598.648405: instructions: \n\t            1adb cksum (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.650240: instructions: \n\t             9c4 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.653067: instructions: \n\t             94b main (/root/noploop)\n\nnoploop 21796 [001] 1410598.657866: instructions: \n\t             9e0 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.660253: instructions: \n\t             957 main (/root/noploop)\n\nswapper     0 [005] 1410598.661259:       cycles: \n\t          af2bfe poll_idle (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          956752 cpuidle_enter_state (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          956957 cpuidle_enter (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2c8623 call_cpuidle (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2c88c9 do_idle (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2c8b13 cpu_startup_entry (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          252886 start_secondary (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2000cf verify_cpu (/lib/modules/4.13.0-rc1/build/vmlinux)\n\nnoploop 21796 [001] 1410598.664965:       cycles: \n\t             717 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.664975:       cycles: \n\t             69b main (/root/noploop)\n\nnoploop 21796 [001] 1410598.665495: instructions: \n\t             a0c main (/root/noploop)\n\ncksum 21807 [004] 1410598.665552: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.667440: instructions: \n\t             697 main (/root/noploop)\n\ncksum 21807 [004] 1410598.671379:       cycles: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.673121: instructions: \n\t             677 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.674624: instructions: \n\t             837 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.680736: instructions: \n\t             a48 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.681808: instructions: \n\t             6eb main (/root/noploop)\n\ncksum 21807 [004] 1410598.682522: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.688362: instructions: \n\t             79b main (/root/noploop)\n\nnoploop 21797 [002] 1410598.688994: instructions: \n\t             94b main (/root/noploop)\n\nswapper     0 [005] 1410598.689898:       cycles: \n\t          af2bfe poll_idle (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          956752 cpuidle_enter_state (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          956957 cpuidle_enter (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2c8623 call_cpuidle (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2c88c9 do_idle (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2c8b13 cpu_startup_entry (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          252886 start_secondary (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2000cf verify_cpu (/lib/modules/4.13.0-rc1/build/vmlinux)\n\nnoploop 21796 [001] 1410598.693606:       cycles: \n\t             96f main (/root/noploop)\n\nnoploop 21797 [002] 1410598.693617:       cycles: \n\t             87b main (/root/noploop)\n\nnoploop 21796 [001] 1410598.695990: instructions: \n\t             7c0 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.696180: instructions: \n\t             86f main (/root/noploop)\n\ncksum 21807 [004] 1410598.699700: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\ncksum 21807 [004] 1410598.700021:       cycles: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.703364: instructions: \n\t             737 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.703616: instructions: \n\t             9c0 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.710549: instructions: \n\t             867 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.711241: instructions: \n\t             70b main (/root/noploop)\n\ncksum 21807 [004] 1410598.716851: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.717736: instructions: \n\t             85b main (/root/noploop)\n\nswapper     0 [005] 1410598.718538:       cycles: \n\t          af2c01 poll_idle (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          956752 cpuidle_enter_state (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          956957 cpuidle_enter (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2c8623 call_cpuidle (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2c88c9 do_idle (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2c8b13 cpu_startup_entry (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          252886 start_secondary (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2000cf verify_cpu (/lib/modules/4.13.0-rc1/build/vmlinux)\n\nnoploop 21796 [001] 1410598.718864: instructions: \n\t             71c main (/root/noploop)\n\nnoploop 21796 [001] 1410598.722248:       cycles: \n\t             76b main (/root/noploop)\n\nnoploop 21797 [002] 1410598.722259:       cycles: \n\t             99f main (/root/noploop)\n\nnoploop 21797 [002] 1410598.724923: instructions: \n\t             683 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.726493: instructions: \n\t             6df main (/root/noploop)\n\ncksum 21807 [004] 1410598.728663:       cycles: \n\t          ae2d1e copy_user_enhanced_fast_string (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          651824 copy_page_to_iter (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          3b5d64 generic_file_read_iter (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          4e8626 ext4_file_read_iter (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          44b0fe __vfs_read (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          44bd56 vfs_read (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          44d495 sys_read (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          af30bb entry_SYSCALL_64_fastpath (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t           7afe0 _IO_file_read (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t           7ad41 _IO_file_xsgetn (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t           79b8f __GI___fread_unlocked (/lib/x86_64-linux-gnu/libc-2.24.so)\n\t            1b23 cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.732108: instructions: \n\t             7cf main (/root/noploop)\n\ncksum 21807 [004] 1410598.733868: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.734119: instructions: \n\t             8a8 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.739299: instructions: \n\t             6a3 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.741746: instructions: \n\t             a1c main (/root/noploop)\n\nnoploop 21797 [002] 1410598.746484: instructions: \n\t             77f main (/root/noploop)\n\nswapper     0 [005] 1410598.747178:       cycles: \n\t          af2bfe poll_idle (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          956752 cpuidle_enter_state (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          956957 cpuidle_enter (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2c8623 call_cpuidle (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2c88c9 do_idle (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2c8b13 cpu_startup_entry (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          252886 start_secondary (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2000cf verify_cpu (/lib/modules/4.13.0-rc1/build/vmlinux)\n\nnoploop 21796 [001] 1410598.749373: instructions: \n\t             a44 main (/root/noploop)\n\ncksum 21807 [004] 1410598.750821: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.750890:       cycles: \n\t             7eb main (/root/noploop)\n\nnoploop 21797 [002] 1410598.750900:       cycles: \n\t             98f main (/root/noploop)\n\nnoploop 21797 [002] 1410598.753670: instructions: \n\t             73f main (/root/noploop)\n\nnoploop 21796 [001] 1410598.757000: instructions: \n\t             a4c main (/root/noploop)\n\ncksum 21807 [004] 1410598.757306:       cycles: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.760856: instructions: \n\t             8c7 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.764626: instructions: \n\t             95b main (/root/noploop)\n\ncksum 21807 [004] 1410598.767889: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.768041: instructions: \n\t             9fb main (/root/noploop)\n\nnoploop 21796 [001] 1410598.771989: instructions: \n\t             69b main (/root/noploop)\n\nnoploop 21797 [002] 1410598.775226: instructions: \n\t             727 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.779173: instructions: \n\t             7ef main (/root/noploop)\n\nnoploop 21796 [001] 1410598.779532:       cycles: \n\t             78b main (/root/noploop)\n\nnoploop 21797 [002] 1410598.779543:       cycles: \n\t             853 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.782412: instructions: \n\t             77f main (/root/noploop)\n\ncksum 21807 [004] 1410598.785060: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\ncksum 21807 [004] 1410598.785948:       cycles: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.786362: instructions: \n\t             9fb main (/root/noploop)\n\nnoploop 21797 [002] 1410598.789597: instructions: \n\t             8e3 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.793547: instructions: \n\t             a1b main (/root/noploop)\n\nnoploop 21797 [002] 1410598.796782: instructions: \n\t             887 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.800732: instructions: \n\t             923 main (/root/noploop)\n\ncksum 21807 [004] 1410598.802246: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.803967: instructions: \n\t             93f main (/root/noploop)\n\nnoploop 21796 [001] 1410598.807917: instructions: \n\t             887 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.808173:       cycles: \n\t             913 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.808184:       cycles: \n\t             a53 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.811152: instructions: \n\t             807 main (/root/noploop)\n\ncksum 21807 [004] 1410598.814589:       cycles: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.815102: instructions: \n\t             72f main (/root/noploop)\n\nnoploop 21797 [002] 1410598.818337: instructions: \n\t             99f main (/root/noploop)\n\ncksum 21807 [004] 1410598.819414: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.822287: instructions: \n\t             703 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.825521: instructions: \n\t             73b main (/root/noploop)\n\nnoploop 21796 [001] 1410598.829472: instructions: \n\t             a23 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.832706: instructions: \n\t             803 main (/root/noploop)\n\ncksum 21807 [004] 1410598.836558: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.836657: instructions: \n\t             7d3 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.836815:       cycles: \n\t             8d7 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.836825:       cycles: \n\t             95f main (/root/noploop)\n\nnoploop 21797 [002] 1410598.839892: instructions: \n\t             8cf main (/root/noploop)\n\ncksum 21807 [004] 1410598.843232:       cycles: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.843843: instructions: \n\t             89f main (/root/noploop)\n\nnoploop 21797 [002] 1410598.847076: instructions: \n\t             a3f main (/root/noploop)\n\nnoploop 21796 [001] 1410598.851027: instructions: \n\t             76b main (/root/noploop)\n\ncksum 21807 [004] 1410598.853729: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.854261: instructions: \n\t             a03 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.858212: instructions: \n\t             80b main (/root/noploop)\n\nnoploop 21797 [002] 1410598.861446: instructions: \n\t             a07 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.865397: instructions: \n\t             917 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.865456:       cycles: \n\t             7ef main (/root/noploop)\n\nnoploop 21797 [002] 1410598.865466:       cycles: \n\t             92b main (/root/noploop)\n\nnoploop 21797 [002] 1410598.868632: instructions: \n\t             6db main (/root/noploop)\n\ncksum 21807 [004] 1410598.870889: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\ncksum 21807 [004] 1410598.871891:       cycles: \n\t            1ac6 cksum (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.872583: instructions: \n\t             9f7 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.875817: instructions: \n\t             697 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.879768: instructions: \n\t             7d3 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.883000: instructions: \n\t             933 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.886951: instructions: \n\t             9cc main (/root/noploop)\n\ncksum 21807 [004] 1410598.888074: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.890185: instructions: \n\t             993 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.894096:       cycles: \n\t             6eb main (/root/noploop)\n\nnoploop 21797 [002] 1410598.894108:       cycles: \n\t             6c3 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.894553: instructions: \n\t             9e0 main (/root/noploop)\n\nswapper     0 [005] 1410598.895787:       cycles: \n\t          af2bfe poll_idle (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          956752 cpuidle_enter_state (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          956957 cpuidle_enter (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2c8623 call_cpuidle (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2c88c9 do_idle (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2c8b13 cpu_startup_entry (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          252886 start_secondary (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2000cf verify_cpu (/lib/modules/4.13.0-rc1/build/vmlinux)\n\nnoploop 21797 [002] 1410598.897371: instructions: \n\t             7c3 main (/root/noploop)\n\ncksum 21807 [004] 1410598.900532:       cycles: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.902180: instructions: \n\t             9a4 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.904556: instructions: \n\t             95f main (/root/noploop)\n\ncksum 21807 [004] 1410598.905217: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.909806: instructions: \n\t             9c0 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.911741: instructions: \n\t             95f main (/root/noploop)\n\nnoploop 21796 [001] 1410598.917432: instructions: \n\t             8e4 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.918925: instructions: \n\t             8cb main (/root/noploop)\n\ncksum 21807 [004] 1410598.922385: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.922738:       cycles: \n\t             a18 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.922749:       cycles: \n\t             7d3 main (/root/noploop)\n\nswapper     0 [005] 1410598.924427:       cycles: \n\t          af2bfe poll_idle (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          956752 cpuidle_enter_state (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          956957 cpuidle_enter (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2c8623 call_cpuidle (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2c88c9 do_idle (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2c8b13 cpu_startup_entry (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          252886 start_secondary (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2000cf verify_cpu (/lib/modules/4.13.0-rc1/build/vmlinux)\n\nnoploop 21796 [001] 1410598.925060: instructions: \n\t             9e3 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.926110: instructions: \n\t             953 main (/root/noploop)\n\ncksum 21807 [004] 1410598.929175:       cycles: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.932685: instructions: \n\t             9c4 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.933295: instructions: \n\t             6cf main (/root/noploop)\n\ncksum 21807 [004] 1410598.939563: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\nnoploop 21796 [001] 1410598.940311: instructions: \n\t             8cb main (/root/noploop)\n\nnoploop 21797 [002] 1410598.940480: instructions: \n\t             867 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.947665: instructions: \n\t             a03 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.947923: instructions: \n\t             893 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.951379:       cycles: \n\t             687 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.951390:       cycles: \n\t             78b main (/root/noploop)\n\nswapper     0 [005] 1410598.953066:       cycles: \n\t          af2bfe poll_idle (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          956752 cpuidle_enter_state (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          956957 cpuidle_enter (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2c8623 call_cpuidle (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2c88c9 do_idle (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2c8b13 cpu_startup_entry (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          252886 start_secondary (/lib/modules/4.13.0-rc1/build/vmlinux)\n\t          2000cf verify_cpu (/lib/modules/4.13.0-rc1/build/vmlinux)\n\nnoploop 21797 [002] 1410598.954849: instructions: \n\t             6e3 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.955534: instructions: \n\t             68b main (/root/noploop)\n\ncksum 21807 [004] 1410598.956752: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\ncksum 21807 [004] 1410598.957817:       cycles: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.962034: instructions: \n\t             703 main (/root/noploop)\n\nnoploop 21796 [001] 1410598.962952: instructions: \n\t             9b3 main (/root/noploop)\n\nnoploop 21797 [002] 1410598.969219: instructions: \n\t             89f main (/root/noploop)\n\nnoploop 21796 [001] 1410598.970137: instructions: \n\t             707 main (/root/noploop)\n\ncksum 21807 [004] 1410598.973926: instructions: \n\t            193b cksum (/usr/bin/cksum)\n\t            1f52 main (/usr/bin/cksum)\n\nnoploop 21797 [002] 1410598.976404: instructions: \n\t    552f0000552f [unknown] ([unknown])\n\nnoploop 21796 [001] 1410598.977322: instructions: \n\t      774db3aa23 [unknown] ([unknown])\n\n"
  },
  {
    "path": "test/perf-dd-stacks-01.txt",
    "content": "dd 29776 666709.771979:   10101010 cpu-clock: \n\t          414b3b fsnotify (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t          3d6b4c vfs_read (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t          3d6b9f sys_read (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t          968f6e system_call (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t           e5f70 read (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t               0 [unknown] ([unknown])\n\ndd 29776 666709.782078:   10101010 cpu-clock: \n\t          3d5d39 rw_verify_area (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t          3d68f3 vfs_write (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t          3d6c4f sys_write (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t          968f6e system_call (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t           e5fd0 write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t               0 [unknown] ([unknown])\n\ndd 29776 666709.792207:   10101010 cpu-clock: \n\t          2d0c00 __srcu_read_unlock (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t          414d4c fsnotify (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t          3d69de vfs_write (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t          3d6c4f sys_write (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t          968f6e system_call (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t           e5fd0 write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t               0 [unknown] ([unknown])\n\ndd 29776 666709.802280:   10101010 cpu-clock: \n\t           e5f70 read (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t               0 [unknown] ([unknown])\n\ndd 29776 666709.812381:   10101010 cpu-clock: \n\t          3d6c5b sys_write (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t          968f6e system_call (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t           e5fd0 write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t               0 [unknown] ([unknown])\n\ndd 29776 666709.822526:   10101010 cpu-clock: \n\t          2d0bfc __srcu_read_unlock (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t          414d4c fsnotify (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t          3d69de vfs_write (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t          3d6c4f sys_write (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t          968f6e system_call (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t           e5fd0 write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t               0 [unknown] ([unknown])\n\ndd 29776 666709.832583:   10101010 cpu-clock: \n\t          2d0c0b __srcu_read_unlock (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t          414d4c fsnotify (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t          3d69de vfs_write (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t          3d6c4f sys_write (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t          968f6e system_call (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t           e5fd0 write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\ndd 29776 666709.842684:   10101010 cpu-clock: \n\t          3f2fa6 __fget_light (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t          3f2fe3 __fdget (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t          3f3ab2 __fdget_pos (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t          3d6c28 sys_write (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t          968f6e system_call (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t           e5fd0 write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\ndd 29776 666709.852785:   10101010 cpu-clock: \n\t            31ef [unknown] (/bin/dd)\n\t    7f2eb2b31c2c [unknown] ([unknown])\n\ndd 29776 666709.862886:   10101010 cpu-clock: \n\t          3f3aa0 __fdget_pos (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t          968f6e system_call (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t           e5f70 read (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t               0 [unknown] ([unknown])\n\ndd 29776 666709.872987:   10101010 cpu-clock: \n\t          968f37 system_call (/lib/modules/4.1.0-virtual/build/vmlinux)\n\t             246 [unknown] ([unknown])\n"
  },
  {
    "path": "test/perf-funcab-cmd-01.txt",
    "content": "# ========\n# captured on: Thu Jul  7 20:47:43 2016\n# hostname : bgregg-test-i-xxxxxxxx\n# os release : 3.13.0-49-generic\n# perf version : 3.13.11-ckt17\n# arch : x86_64\n# nrcpus online : 2\n# nrcpus avail : 2\n# cpudesc : Intel(R) Xeon(R) CPU E5-2670 v2 @ 2.50GHz\n# cpuid : GenuineIntel,6,62,4\n# total memory : 7693752 kB\n# cmdline : /usr/lib/linux-tools-3.13.0-49/perf record -F 99 -g ./func_ab \n# event : name = cpu-clock, type = 1, config = 0x0, config1 = 0x0, config2 = 0x0, excl_usr = 0, excl_kern = 0, excl_host = 0, excl_guest = 1, precise_ip = 0, attr_mmap2 = 0, attr_mmap  = 1, attr_mmap_data = 0\n# HEADER_CPU_TOPOLOGY info available, use -I to display\n# HEADER_NUMA_TOPOLOGY info available, use -I to display\n# pmu mappings: software = 1, tracepoint = 2, breakpoint = 5\n# ========\n#\nfunc_ab 15285 28075374.517811: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.530122: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.542454: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.554769: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.567082: cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.579396: cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.591710: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.604026: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.615216: cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.627530: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.639851: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.652209: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.664492: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.676807: cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.689123: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.701438: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.713751: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.724990: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.737309: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.749628: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.761973: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.775638: cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.787952: cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.800267: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.812587: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.824901: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.837234: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.848441: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.860755: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.873052: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.885365: cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.897680: cpu-clock: \n\t          40056c func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.909993: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.922308: cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.934639: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.946953: cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.959267: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.970475: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.982769: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075374.995083: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.007397: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.019712: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.032056: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.044397: cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.056721: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.069036: cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.080244: cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.092556: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.105076: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.117390: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.129691: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.142020: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.154335: cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.166633: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.178947: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.191263: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.202470: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.214783: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.227079: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.239433: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.251747: cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.264056: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.276375: cpu-clock: \n\t          400541 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.288683: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.300999: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.313313: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.324520: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.336851: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.349164: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.361479: cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.374963: cpu-clock: \n\t          400568 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.387278: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.399592: cpu-clock: \n\t          400545 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.411878: cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.424221: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.435408: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.447766: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.460056: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.472392: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.484706: cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.497070: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.509403: cpu-clock: \n\t          400545 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.521718: cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.534048: cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.546363: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.557572: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.569886: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.582198: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.594491: cpu-clock: \n\t          400568 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.606826: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.619110: cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.631423: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.643754: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.656056: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.668383: cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.679591: cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.691906: cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.704220: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.716535: cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.728897: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.741228: cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.753548: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.765902: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.778217: cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.790578: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.801722: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.814042: cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.826400: cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.838733: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.851048: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.863362: cpu-clock: \n\t          400541 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.875676: cpu-clock: \n\t          400541 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.887990: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.900305: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.911513: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.923789: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.936193: cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.948433: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.960746: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.973061: cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.985376: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075375.997691: cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.010006: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.022308: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.033606: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.045882: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.058195: cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.070515: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.082829: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.095142: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.107456: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.119771: cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.132056: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.144455: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.155623: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.167936: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.180224: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.192537: cpu-clock: \n\t          400568 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.204850: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.217165: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.229481: cpu-clock: \n\t          400541 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.241717: cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.254032: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.265201: cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.277516: cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.289829: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.302145: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.314460: cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.326774: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.339106: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.351420: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.363736: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.376057: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.387267: cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.399550: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.411889: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.424209: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.436532: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.448852: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.461166: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.473480: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.485794: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.498151: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.509361: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.521675: cpu-clock: \n\t          400568 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.533989: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.546259: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.558590: cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15285 28075376.570905: cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f9ca5486ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\n"
  },
  {
    "path": "test/perf-funcab-pid-01.txt",
    "content": "# ========\n# captured on: Thu Jul  7 20:48:39 2016\n# hostname : bgregg-test-i-xxxxxxxx\n# os release : 3.13.0-49-generic\n# perf version : 3.13.11-ckt17\n# arch : x86_64\n# nrcpus online : 2\n# nrcpus avail : 2\n# cpudesc : Intel(R) Xeon(R) CPU E5-2670 v2 @ 2.50GHz\n# cpuid : GenuineIntel,6,62,4\n# total memory : 7693752 kB\n# cmdline : /usr/lib/linux-tools-3.13.0-49/perf record -F 99 -p 15294 -g \n# event : name = cpu-clock, type = 1, config = 0x0, config1 = 0x0, config2 = 0x0, excl_usr = 0, excl_kern = 0, excl_host = 0, excl_guest = 1, precise_ip = 0, attr_mmap2 = 0, attr_mmap  = 1, attr_mmap_data = 0\n# HEADER_CPU_TOPOLOGY info available, use -I to display\n# HEADER_NUMA_TOPOLOGY info available, use -I to display\n# pmu mappings: software = 1, tracepoint = 2, breakpoint = 5\n# ========\n#\nfunc_ab 15294 cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400541 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400568 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400568 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400568 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400541 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400541 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400568 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400541 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400541 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400549 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400550 func_a (/root/lang/func_ab)\n\t          40059d main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400570 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nfunc_ab 15294 cpu-clock: \n\t          400577 func_b (/root/lang/func_ab)\n\t          4005b1 main (/root/lang/func_ab)\n\t    7f10b9594ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\n"
  },
  {
    "path": "test/perf-iperf-stacks-pidtid-01.txt",
    "content": "iperf 27409/28744 [000] 441995.133575: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86bb0e skb_copy_datagram_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cc255 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\niperf 27409/28742 [001] 441995.133584: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\niperf 27409/28741 [002] 441995.133589: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          2b5264 __wake_up (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86d0ee sk_stream_write_space (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c68aa tcp_check_space (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cbd0f tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d7790 tcp_v4_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2f6f ip_local_deliver_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b3231 ip_local_deliver (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2c2a ip_rcv_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b352d ip_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8789d7 __netif_receive_skb_core (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          878d48 __netif_receive_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          879a0f process_backlog (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8791bc net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bff04 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25980008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28737 [003] 441995.133599: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9714a6 preempt_schedule_common (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9714dc _cond_resched (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3cb301 kmem_cache_alloc_node (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8659ae __alloc_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c2876 sk_stream_alloc_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3763 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28744 [000] 441995.143681: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          861b29 sk_wait_data (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c1525 tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\niperf 27409/28742 [001] 441995.143685: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          861b29 sk_wait_data (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c1525 tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\niperf 28735/28738 [002] 441995.143689: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86d1e2 sk_stream_wait_memory (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3453 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28737 [003] 441995.143703: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86d1e2 sk_stream_wait_memory (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3453 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28744 [000] 441995.153778: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          861b29 sk_wait_data (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c1525 tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f259c0008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 27409/28742 [001] 441995.153785: cpu-clock: \n\t          8647d5 skb_release_head_state (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          865447 kfree_skb_partial (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cbfb2 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25900008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28738 [002] 441995.153788: cpu-clock: \n\t          8cf2f7 tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d0753 tcp_push_one (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3585 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28743 [003] 441995.153798: cpu-clock: \n\t          8c0efa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f258c0008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28739 [000] 441995.163877: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3913 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28742 [001] 441995.163886: cpu-clock: \n\t          973cae schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          861b29 sk_wait_data (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c1525 tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25900008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 27409/28741 [002] 441995.163895: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          861b29 sk_wait_data (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c1525 tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25980008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 27409/28743 [003] 441995.163898: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86bb0e skb_copy_datagram_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cc255 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\niperf 28735/28739 [000] 441995.173977: cpu-clock: \n\t          8d6c86 tcp_v4_send_check (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d067e __tcp_push_pending_frames (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bf70f tcp_push (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3021 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28742 [001] 441995.173991: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          861b29 sk_wait_data (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c1525 tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25900008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28738 [002] 441995.173993: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86d1e2 sk_stream_wait_memory (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3453 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28743 [003] 441995.173999: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86bb0e skb_copy_datagram_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cc255 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\niperf 27409/28742 [001] 441995.184057: cpu-clock: \n\t          8cc0cb tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25900008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 27409/28743 [003] 441995.184057: cpu-clock: \n\t          8c63f5 tcp_event_data_recv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f258c0008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28738 [002] 441995.184057: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3913 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28739 [000] 441995.184057: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3913 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28739 [000] 441995.194180: cpu-clock: \n\t          8cf77b tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d0753 tcp_push_one (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3585 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28742 [001] 441995.194189: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86bb0e skb_copy_datagram_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cc255 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25900008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 27409/28741 [002] 441995.194197: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          861b29 sk_wait_data (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c1525 tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25980008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28737 [003] 441995.194202: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3913 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28741 [002] 441995.204245: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86bb0e skb_copy_datagram_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cc255 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25980008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28739 [000] 441995.204281: cpu-clock: \n\t          8ddf55 raw_local_deliver (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b3231 ip_local_deliver (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2c2a ip_rcv_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b352d ip_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8789d7 __netif_receive_skb_core (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          878d48 __netif_receive_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          879a0f process_backlog (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8791bc net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6782 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d067e __tcp_push_pending_frames (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bf70f tcp_push (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3021 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28736 [001] 441995.204290: cpu-clock: \n\t          974bc6 _raw_spin_lock_irqsave (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d65f8 tcp_prequeue (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d7781 tcp_v4_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2f6f ip_local_deliver_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b3231 ip_local_deliver (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2c2a ip_rcv_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b352d ip_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8789d7 __netif_receive_skb_core (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          878d48 __netif_receive_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          879a0f process_backlog (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8791bc net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6782 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d067e __tcp_push_pending_frames (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bf70f tcp_push (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3021 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28737 [003] 441995.204303: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3913 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28744 [000] 441995.214381: cpu-clock: \n\t          8b2c2b ip_rcv_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b352d ip_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8789d7 __netif_receive_skb_core (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          878d48 __netif_receive_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          879a0f process_backlog (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8791bc net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bff04 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\niperf 28735/28736 [001] 441995.214394: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          203b13 prepare_exit_to_usermode (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          203bf5 syscall_return_slowpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974f98 int_ret_from_sys_call (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\nrun 28796/28796 [002] 441995.214395: cpu-clock: \n\t          201028 xen_hypercall_mmu_update (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          39fc2a do_set_pte (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3731a5 filemap_map_pages (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3a19cc handle_mm_fault (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          262fba __do_page_fault (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          263280 do_page_fault (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976fb8 page_fault (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          141460 __GI___strncmp_ssse3 (/lib/x86_64-linux-gnu/libc-2.19.so)\n\t752f3a646e616d6d [unknown] ([unknown])\n\niperf 28735/28737 [003] 441995.214404: cpu-clock: \n\t          8b6f42 ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d067e __tcp_push_pending_frames (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bf70f tcp_push (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3021 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28739 [000] 441995.224484: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3913 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28736 [001] 441995.224492: cpu-clock: \n\t          864dfe __copy_skb_header (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          864ece __skb_clone (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8666c3 skb_clone (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf25c tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d0753 tcp_push_one (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3585 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28741 [002] 441995.224496: cpu-clock: \n\t          865965 __alloc_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c628b __tcp_ack_snd_check (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cbfa1 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\niperf 28735/28737 [003] 441995.224505: cpu-clock: \n\t          8b6a50 __ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d0753 tcp_push_one (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3585 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28739 [000] 441995.234587: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86d1e2 sk_stream_wait_memory (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3453 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28736 [001] 441995.234598: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86d1e2 sk_stream_wait_memory (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3453 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28741 [002] 441995.234599: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          861b29 sk_wait_data (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c1525 tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25980008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28737 [003] 441995.234606: cpu-clock: \n\t          3bf63a policy_zonelist (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3bfa1f alloc_pages_current (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86086c skb_page_frag_refill (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          861221 sk_page_frag_refill (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c31c3 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28744 [000] 441995.244685: cpu-clock: \n\t          405eb7 __fget_light (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85c9a7 sockfd_lookup_light (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d3e7 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f259c0008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 27409/28742 [001] 441995.244695: cpu-clock: \n\t          85d3e7 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25900008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 27409/28741 [002] 441995.244698: cpu-clock: \n\t          864290 kfree_skbmem (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cbfb2 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25980008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28737 [003] 441995.244707: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          2b5580 __wake_up_sync_key (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d65f8 tcp_prequeue (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d7781 tcp_v4_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2f6f ip_local_deliver_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b3231 ip_local_deliver (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2c2a ip_rcv_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b352d ip_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8789d7 __netif_receive_skb_core (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          878d48 __netif_receive_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          879a0f process_backlog (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8791bc net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6782 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d0753 tcp_push_one (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3585 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28744 [000] 441995.254786: cpu-clock: \n\t          8c660c tcp_event_data_recv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cbf3e tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f259c0008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 27409/28741 [002] 441995.254798: cpu-clock: \n\t          8d0485 tcp_release_cb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c149d tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\niperf 28735/28736 [001] 441995.254800: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86d1e2 sk_stream_wait_memory (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3453 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28737 [003] 441995.254807: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3913 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28744 [000] 441995.264889: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          861b29 sk_wait_data (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c1525 tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f259c0008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28736 [001] 441995.264898: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86d1e2 sk_stream_wait_memory (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3453 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28738 [002] 441995.264904: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86d1e2 sk_stream_wait_memory (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3453 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28737 [003] 441995.264912: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          203b13 prepare_exit_to_usermode (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          203bf5 syscall_return_slowpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974f98 int_ret_from_sys_call (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28739 [000] 441995.274988: cpu-clock: \n\t          974bc6 _raw_spin_lock_irqsave (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          2ddd16 mod_timer (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          860938 sk_reset_timer (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ceb81 tcp_schedule_loss_probe (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf851 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d0753 tcp_push_one (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3585 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28742 [001] 441995.274997: cpu-clock: \n\t          878075 netif_rx (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87aa49 dev_hard_start_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87b126 __dev_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87b253 dev_queue_xmit_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6862 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d1079 tcp_send_ack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c628b __tcp_ack_snd_check (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cbfa1 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25900008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 27409/28741 [002] 441995.275000: cpu-clock: \n\t          8c62c0 tcp_grow_window.isra.27 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cbf3e tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25980008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28737 [003] 441995.275010: cpu-clock: \n\t          8add23 ipv4_dst_check (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85f92c __sk_dst_check (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6fd3 ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d0753 tcp_push_one (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3585 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28739 [000] 441995.285090: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3913 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28742 [001] 441995.285099: cpu-clock: \n\t          8d6037 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25900008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\nrun 28797/28797 [002] 441995.285101: cpu-clock: \n\t          379edc free_hot_cold_page_list (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          380c63 release_pages (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3b2c8f free_pages_and_swap_cache (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          39d146 tlb_flush_mmu_free (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          39e0ec tlb_finish_mmu (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ef4a2 shift_arg_pages (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ef6c8 setup_arg_pages (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          43f328 load_elf_binary (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3effbe search_binary_handler (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          43d3ce load_script (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3effbe search_binary_handler (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3f15e6 do_execveat_common.isra.31 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3f19fa sys_execve (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9750d5 return_from_execve (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t           c1337 __execve (/lib/x86_64-linux-gnu/libc-2.19.so)\n\niperf 28735/28737 [003] 441995.285114: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          2b5580 __wake_up_sync_key (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d65f8 tcp_prequeue (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d7781 tcp_v4_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2f6f ip_local_deliver_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b3231 ip_local_deliver (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2c2a ip_rcv_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b352d ip_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8789d7 __netif_receive_skb_core (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          878d48 __netif_receive_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          879a0f process_backlog (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8791bc net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6782 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d067e __tcp_push_pending_frames (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bf70f tcp_push (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3021 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28739 [000] 441995.295195: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          203b13 prepare_exit_to_usermode (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          203bf5 syscall_return_slowpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974f98 int_ret_from_sys_call (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28736 [001] 441995.295199: cpu-clock: \n\t          87841a __netif_receive_skb_core (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          878d48 __netif_receive_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          879a0f process_backlog (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8791bc net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6782 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d0753 tcp_push_one (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3585 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28738 [002] 441995.295206: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86d1e2 sk_stream_wait_memory (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3453 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28737 [003] 441995.295212: cpu-clock: \n\t          8d3833 tcp_md5_do_lookup (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cd64d tcp_established_options (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ce8b4 tcp_current_mss (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bf86c tcp_send_mss (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3077 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28739 [000] 441995.305291: cpu-clock: \n\t          376bf9 __zone_watermark_ok (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          37acf9 get_page_from_freelist (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          37b6b7 __alloc_pages_nodemask (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3bfa31 alloc_pages_current (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86086c skb_page_frag_refill (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          861221 sk_page_frag_refill (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c31c3 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28736 [001] 441995.305300: cpu-clock: \n\t          8d7793 tcp_v4_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2f6f ip_local_deliver_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b3231 ip_local_deliver (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2c2a ip_rcv_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b352d ip_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8789d7 __netif_receive_skb_core (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          878d48 __netif_receive_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          879a0f process_backlog (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8791bc net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6782 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d067e __tcp_push_pending_frames (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bf70f tcp_push (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3021 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\nmultilog 28797/28797 [002] 441995.305305: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          263280 do_page_fault (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976fb8 page_fault (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            c684 _dl_relocate_object (/lib/x86_64-linux-gnu/ld-2.19.so)\n\t            3afa dl_main (/lib/x86_64-linux-gnu/ld-2.19.so)\n\t           17565 _dl_sysdep_start (/lib/x86_64-linux-gnu/ld-2.19.so)\n\niperf 27409/28743 [003] 441995.305313: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86bb0e skb_copy_datagram_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cc255 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\niperf 27409/28744 [000] 441995.315395: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          861b29 sk_wait_data (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c1525 tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f259c0008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28736 [001] 441995.315401: cpu-clock: \n\t          864faf __skb_clone (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8666c3 skb_clone (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf25c tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d0753 tcp_push_one (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3585 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28738 [002] 441995.315405: cpu-clock: \n\t            2d13 [unknown] (/usr/bin/iperf)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28737 [003] 441995.315414: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20bdd9 xen_irq_enable_direct_end (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\niperf 27409/28744 [000] 441995.325493: cpu-clock: \n\t          8d3794 sock_put (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2f6f ip_local_deliver_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b3231 ip_local_deliver (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2c2a ip_rcv_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b352d ip_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8789d7 __netif_receive_skb_core (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          878d48 __netif_receive_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          879a0f process_backlog (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8791bc net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cc012 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f259c0008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28736 [001] 441995.325502: cpu-clock: \n\t          87adb5 __dev_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87b253 dev_queue_xmit_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6862 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d0753 tcp_push_one (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3585 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28741 [002] 441995.325506: cpu-clock: \n\t          8600e0 sock_def_readable (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25980008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28737 [003] 441995.325515: cpu-clock: \n\t          8618e0 release_sock (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28739 [000] 441995.335594: cpu-clock: \n\t          8d3840 tcp_v4_md5_lookup (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cede7 tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d0753 tcp_push_one (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3585 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28742 [001] 441995.335603: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86bb0e skb_copy_datagram_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cc255 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\niperf 28735/28738 [002] 441995.335611: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86d1e2 sk_stream_wait_memory (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3453 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28737 [003] 441995.335616: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3913 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28744 [000] 441995.345698: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          2b5264 __wake_up (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86d0ee sk_stream_write_space (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c68aa tcp_check_space (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cbd0f tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d7790 tcp_v4_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2f6f ip_local_deliver_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b3231 ip_local_deliver (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2c2a ip_rcv_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b352d ip_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8789d7 __netif_receive_skb_core (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          878d48 __netif_receive_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          879a0f process_backlog (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8791bc net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bff04 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f259c0008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 27409/28742 [001] 441995.345704: cpu-clock: \n\t          8cf16d tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d1079 tcp_send_ack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c628b __tcp_ack_snd_check (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cbfa1 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\niperf 27409/28741 [002] 441995.345709: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          861b29 sk_wait_data (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c1525 tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25980008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 27409/28743 [003] 441995.345717: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86bb0e skb_copy_datagram_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cc255 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\niperf 28735/28739 [000] 441995.355797: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86d1e2 sk_stream_wait_memory (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3453 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28736 [001] 441995.355806: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3913 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28738 [002] 441995.355809: cpu-clock: \n\t             f7a __vdso_gettimeofday ([vdso])\n\t            2c5f [unknown] (/usr/bin/iperf)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28737 [003] 441995.355821: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86d1e2 sk_stream_wait_memory (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3453 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28742 [001] 441995.365859: cpu-clock: \n\t          8d754d tcp_v4_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2f6f ip_local_deliver_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b3231 ip_local_deliver (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2c2a ip_rcv_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b352d ip_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8789d7 __netif_receive_skb_core (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          878d48 __netif_receive_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          879a0f process_backlog (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8791bc net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bff04 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25900008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28739 [000] 441995.365897: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3913 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28741 [002] 441995.365918: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          861b29 sk_wait_data (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c1525 tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25980008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 27409/28743 [003] 441995.365920: cpu-clock: \n\t          87b0c9 __dev_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87b253 dev_queue_xmit_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6862 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d1079 tcp_send_ack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c628b __tcp_ack_snd_check (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cbfa1 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\niperf 27409/28744 [000] 441995.375998: cpu-clock: \n\t          85d23c sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f259c0008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 27409/28742 [001] 441995.376010: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          861b29 sk_wait_data (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c1525 tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25900008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28738 [002] 441995.376010: cpu-clock: \n\t          862bfc sk_free (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          76f33f loopback_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87aa49 dev_hard_start_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87b126 __dev_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87b253 dev_queue_xmit_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6862 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d067e __tcp_push_pending_frames (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bf70f tcp_push (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3021 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28743 [003] 441995.376020: cpu-clock: \n\t          87ab49 dev_hard_start_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87b126 __dev_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87b253 dev_queue_xmit_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6862 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d1079 tcp_send_ack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c628b __tcp_ack_snd_check (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cbfa1 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\niperf 28735/28739 [000] 441995.386052: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          2b5580 __wake_up_sync_key (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d65f8 tcp_prequeue (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d7781 tcp_v4_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2f6f ip_local_deliver_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b3231 ip_local_deliver (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2c2a ip_rcv_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b352d ip_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8789d7 __netif_receive_skb_core (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          878d48 __netif_receive_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          879a0f process_backlog (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8791bc net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6782 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d067e __tcp_push_pending_frames (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bf70f tcp_push (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3021 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28736 [001] 441995.386108: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3913 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28741 [002] 441995.386112: cpu-clock: \n\t          8792cd net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cc012 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25980008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 27409/28743 [003] 441995.386120: cpu-clock: \n\t          8c14ad tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f258c0008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28736 [001] 441995.396211: cpu-clock: \n\t          5a5641 copy_from_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28744 [000] 441995.396211: cpu-clock: \n\t          396ed5 kmalloc_slab (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          864731 __kmalloc_reserve.isra.32 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8659de __alloc_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d0fc4 tcp_send_ack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c628b __tcp_ack_snd_check (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cbfa1 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f259c0008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28738 [002] 441995.396212: cpu-clock: \n\t          87a701 validate_xmit_skb.isra.102.part.103 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87b1af __dev_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87b253 dev_queue_xmit_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6862 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d0753 tcp_push_one (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3585 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28737 [003] 441995.396222: cpu-clock: \n\t          8b6d85 ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d0753 tcp_push_one (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3585 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28744 [000] 441995.406305: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          861b29 sk_wait_data (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c1525 tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f259c0008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28736 [001] 441995.406310: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3913 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28741 [002] 441995.406313: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86bb0e skb_copy_datagram_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cc255 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\niperf 28735/28737 [003] 441995.406322: cpu-clock: \n\t          860926 sk_reset_timer (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf851 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d067e __tcp_push_pending_frames (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bf70f tcp_push (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3021 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28744 [000] 441995.416402: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86bb0e skb_copy_datagram_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cc255 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f259c0008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28736 [001] 441995.416411: cpu-clock: \n\t          8792c9 net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6782 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d0753 tcp_push_one (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3585 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28738 [002] 441995.416415: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3913 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28743 [003] 441995.416424: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86bb0e skb_copy_datagram_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cc255 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f258c0008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28739 [000] 441995.426503: cpu-clock: \n\t          86598d __alloc_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c2876 sk_stream_alloc_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3763 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28736 [001] 441995.426513: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6782 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d0753 tcp_push_one (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3585 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28741 [002] 441995.426516: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86bb0e skb_copy_datagram_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cc255 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\niperf 28735/28737 [003] 441995.426525: cpu-clock: \n\t          8bf626 tcp_push (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28744 [000] 441995.436604: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          2b5264 __wake_up (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86d0ee sk_stream_write_space (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c68aa tcp_check_space (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cbd0f tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d7790 tcp_v4_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2f6f ip_local_deliver_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b3231 ip_local_deliver (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2c2a ip_rcv_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b352d ip_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8789d7 __netif_receive_skb_core (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          878d48 __netif_receive_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          879a0f process_backlog (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8791bc net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cc012 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f259c0008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28736 [001] 441995.436613: cpu-clock: \n\t          8bc169 __inet_lookup_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d742a tcp_v4_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2f6f ip_local_deliver_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b3231 ip_local_deliver (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2c2a ip_rcv_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b352d ip_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8789d7 __netif_receive_skb_core (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          878d48 __netif_receive_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          879a0f process_backlog (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8791bc net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6782 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d0753 tcp_push_one (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3585 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28738 [002] 441995.436617: cpu-clock: \n\t          76f325 loopback_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87b126 __dev_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87b253 dev_queue_xmit_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6862 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d0753 tcp_push_one (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3585 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28743 [003] 441995.436626: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86bb0e skb_copy_datagram_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cc255 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\niperf 27409/28744 [000] 441995.446705: cpu-clock: \n\t            ee80 __pthread_disable_asynccancel (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\niperf 28735/28736 [001] 441995.446717: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86d1e2 sk_stream_wait_memory (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3453 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28741 [002] 441995.446718: cpu-clock: \n\t          864705 __kmalloc_reserve.isra.32 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d0fc4 tcp_send_ack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c628b __tcp_ack_snd_check (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cbfa1 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25980008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28737 [003] 441995.446727: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3913 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28739 [000] 441995.456807: cpu-clock: \n\t          8b6714 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d0753 tcp_push_one (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3585 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28736 [001] 441995.456816: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6782 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d0753 tcp_push_one (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3585 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28741 [002] 441995.456820: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          2b5264 __wake_up (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86d0ee sk_stream_write_space (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c68aa tcp_check_space (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cbd0f tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d7790 tcp_v4_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2f6f ip_local_deliver_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b3231 ip_local_deliver (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2c2a ip_rcv_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b352d ip_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8789d7 __netif_receive_skb_core (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          878d48 __netif_receive_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          879a0f process_backlog (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8791bc net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bff04 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25980008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 27409/28743 [003] 441995.456829: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          861b29 sk_wait_data (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c1525 tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f258c0008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 27409/28744 [000] 441995.466907: cpu-clock: \n\t          86bbcb skb_copy_datagram_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cc255 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f259c0008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28736 [001] 441995.466916: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3913 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28741 [002] 441995.466926: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          861b29 sk_wait_data (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c1525 tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25980008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28737 [003] 441995.466928: cpu-clock: \n\t          862bfc sk_free (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          76f33f loopback_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87aa49 dev_hard_start_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87b126 __dev_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87b253 dev_queue_xmit_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6862 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d0753 tcp_push_one (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3585 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28744 [000] 441995.477008: cpu-clock: \n\t          2e41d5 ktime_get_with_offset (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87808c netif_rx (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          76f388 loopback_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87aa49 dev_hard_start_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87b126 __dev_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87b253 dev_queue_xmit_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6862 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d1079 tcp_send_ack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c628b __tcp_ack_snd_check (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cbfa1 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f259c0008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28736 [001] 441995.477017: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3913 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28741 [002] 441995.477021: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86bb0e skb_copy_datagram_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cc255 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25980008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28737 [003] 441995.477032: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          2b5580 __wake_up_sync_key (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d65f8 tcp_prequeue (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d7781 tcp_v4_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2f6f ip_local_deliver_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b3231 ip_local_deliver (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2c2a ip_rcv_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b352d ip_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8789d7 __netif_receive_skb_core (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          878d48 __netif_receive_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          879a0f process_backlog (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8791bc net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6782 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d067e __tcp_push_pending_frames (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bf70f tcp_push (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3021 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28744 [000] 441995.487093: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\niperf 28735/28736 [001] 441995.487119: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3913 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28741 [002] 441995.487122: cpu-clock: \n\t          5a1213 __memmove (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2f6f ip_local_deliver_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b3231 ip_local_deliver (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2c2a ip_rcv_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b352d ip_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8789d7 __netif_receive_skb_core (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          878d48 __netif_receive_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          879a0f process_backlog (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8791bc net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cc012 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25980008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28737 [003] 441995.487136: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9714a6 preempt_schedule_common (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9714dc _cond_resched (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3cb301 kmem_cache_alloc_node (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8659ae __alloc_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c2876 sk_stream_alloc_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3763 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28744 [000] 441995.497210: cpu-clock: \n\t          861af6 sk_wait_data (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c1525 tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\niperf 27409/28742 [001] 441995.497219: cpu-clock: \n\t          8add23 ipv4_dst_check (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60f6 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25900008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28738 [002] 441995.497223: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3913 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28737 [003] 441995.497233: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3913 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28739 [000] 441995.507315: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86d1e2 sk_stream_wait_memory (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3453 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28736 [001] 441995.507321: cpu-clock: \n\t          27a000 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6782 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d067e __tcp_push_pending_frames (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bf70f tcp_push (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3021 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28741 [002] 441995.507324: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\niperf 28735/28737 [003] 441995.507333: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          2b5580 __wake_up_sync_key (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d65f8 tcp_prequeue (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d7781 tcp_v4_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2f6f ip_local_deliver_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b3231 ip_local_deliver (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2c2a ip_rcv_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b352d ip_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8789d7 __netif_receive_skb_core (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          878d48 __netif_receive_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          879a0f process_backlog (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8791bc net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6782 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d0753 tcp_push_one (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3585 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28739 [000] 441995.517413: cpu-clock: \n\t          8bf637 tcp_push (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3021 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28742 [001] 441995.517421: cpu-clock: \n\t          2b547f finish_wait (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          861b0b sk_wait_data (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c1525 tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\niperf 27409/28741 [002] 441995.517424: cpu-clock: \n\t          8d6037 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\niperf 28735/28737 [003] 441995.517435: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          2b5580 __wake_up_sync_key (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d65f8 tcp_prequeue (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d7781 tcp_v4_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2f6f ip_local_deliver_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b3231 ip_local_deliver (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2c2a ip_rcv_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b352d ip_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8789d7 __netif_receive_skb_core (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          878d48 __netif_receive_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          879a0f process_backlog (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8791bc net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6782 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d067e __tcp_push_pending_frames (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bf70f tcp_push (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3021 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28744 [000] 441995.527513: cpu-clock: \n\t          877fb4 netif_rx_internal (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87808c netif_rx (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          76f388 loopback_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87aa49 dev_hard_start_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87b126 __dev_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87b253 dev_queue_xmit_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6862 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d1079 tcp_send_ack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c628b __tcp_ack_snd_check (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cbfa1 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f259c0008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28736 [001] 441995.527523: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3913 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28741 [002] 441995.527526: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86bb0e skb_copy_datagram_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cc255 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25980008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28737 [003] 441995.527536: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86d1e2 sk_stream_wait_memory (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3453 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28744 [000] 441995.537616: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          861b29 sk_wait_data (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c1525 tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\niperf 27409/28742 [001] 441995.537623: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8791bc net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cc012 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25900008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28738 [002] 441995.537626: cpu-clock: \n\t          2bc681 __raw_callee_save___pv_queued_spin_unlock (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c2f86 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28737 [003] 441995.537636: cpu-clock: \n\t          3bfa55 alloc_pages_current (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86086c skb_page_frag_refill (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          861221 sk_page_frag_refill (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c31c3 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28739 [000] 441995.547716: cpu-clock: \n\t          8b3317 ip_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8789d7 __netif_receive_skb_core (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          878d48 __netif_receive_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          879a0f process_backlog (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8791bc net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6782 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d067e __tcp_push_pending_frames (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bf70f tcp_push (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3021 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28736 [001] 441995.547725: cpu-clock: \n\t          8cdfdb tcp_wfree (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          76f33f loopback_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87aa49 dev_hard_start_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87b126 __dev_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87b253 dev_queue_xmit_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6862 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d067e __tcp_push_pending_frames (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bf70f tcp_push (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3021 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28741 [002] 441995.547733: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          861b29 sk_wait_data (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c1525 tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25980008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 27409/28743 [003] 441995.547737: cpu-clock: \n\t          8c9205 tcp_rcv_space_adjust (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f258c0008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 27409/28744 [000] 441995.557817: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86bb0e skb_copy_datagram_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cc255 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\niperf 28735/28736 [001] 441995.557826: cpu-clock: \n\t          406bd5 __fdget_pos (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28738 [002] 441995.557830: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9714a6 preempt_schedule_common (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9714dc _cond_resched (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3cb301 kmem_cache_alloc_node (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8659ae __alloc_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c2876 sk_stream_alloc_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3763 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28737 [003] 441995.557838: cpu-clock: \n\t          881435 dst_release (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d7781 tcp_v4_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2f6f ip_local_deliver_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b3231 ip_local_deliver (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2c2a ip_rcv_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b352d ip_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8789d7 __netif_receive_skb_core (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          878d48 __netif_receive_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          879a0f process_backlog (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8791bc net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6782 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d0753 tcp_push_one (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3585 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28739 [000] 441995.567918: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          2b5580 __wake_up_sync_key (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d65f8 tcp_prequeue (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d7781 tcp_v4_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2f6f ip_local_deliver_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b3231 ip_local_deliver (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2c2a ip_rcv_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b352d ip_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8789d7 __netif_receive_skb_core (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          878d48 __netif_receive_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          879a0f process_backlog (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8791bc net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6782 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d067e __tcp_push_pending_frames (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bf70f tcp_push (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3021 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28742 [001] 441995.567927: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          2ddda5 mod_timer (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          860938 sk_reset_timer (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ca418 tcp_rearm_rto (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8caa4b tcp_ack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cbcd4 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d7790 tcp_v4_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2f6f ip_local_deliver_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b3231 ip_local_deliver (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2c2a ip_rcv_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b352d ip_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8789d7 __netif_receive_skb_core (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          878d48 __netif_receive_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          879a0f process_backlog (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8791bc net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bff04 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25900008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 27409/28741 [002] 441995.567930: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3796eb free_compound_page (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3806d4 __put_compound_page (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          380716 put_compound_page (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3808b6 put_page (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          865228 skb_release_data (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8652b4 skb_release_all (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8652d2 __kfree_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cabfc tcp_ack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cbcd4 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d7790 tcp_v4_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2f6f ip_local_deliver_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b3231 ip_local_deliver (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2c2a ip_rcv_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b352d ip_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8789d7 __netif_receive_skb_core (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          878d48 __netif_receive_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          879a0f process_backlog (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8791bc net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bff04 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25980008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28737 [003] 441995.567943: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86d1e2 sk_stream_wait_memory (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3453 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28739 [000] 441995.578021: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86d1e2 sk_stream_wait_memory (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3453 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28742 [001] 441995.578027: cpu-clock: \n\t          974a9b _raw_spin_lock_bh (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c0e5b tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25900008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 27409/28741 [002] 441995.578031: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          861b29 sk_wait_data (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c1525 tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\niperf 27409/28743 [003] 441995.578040: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86bb0e skb_copy_datagram_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cc255 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\niperf 27409/28742 [001] 441995.588210: cpu-clock: \n\t          8bc115 __inet_lookup_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2f6f ip_local_deliver_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b3231 ip_local_deliver (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2c2a ip_rcv_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b352d ip_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8789d7 __netif_receive_skb_core (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          878d48 __netif_receive_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          879a0f process_backlog (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8791bc net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6782 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d1079 tcp_send_ack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bf9a6 tcp_cleanup_rbuf (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c1495 tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\niperf 27409/28743 [003] 441995.588210: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86bb0e skb_copy_datagram_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cc255 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f258c0008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28738 [002] 441995.588210: cpu-clock: \n\t          879075 net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6782 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d067e __tcp_push_pending_frames (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bf70f tcp_push (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3021 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28744 [000] 441995.588210: cpu-clock: \n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\niperf 28735/28739 [000] 441995.598220: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          2b5580 __wake_up_sync_key (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d65f8 tcp_prequeue (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d7781 tcp_v4_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2f6f ip_local_deliver_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b3231 ip_local_deliver (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2c2a ip_rcv_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b352d ip_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8789d7 __netif_receive_skb_core (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          878d48 __netif_receive_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          879a0f process_backlog (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8791bc net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6782 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d067e __tcp_push_pending_frames (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bf70f tcp_push (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3021 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28736 [001] 441995.598230: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3913 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28738 [002] 441995.598233: cpu-clock: \n\t          2e41dc ktime_get_with_offset (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87808c netif_rx (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          76f388 loopback_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87aa49 dev_hard_start_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87b126 __dev_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          87b253 dev_queue_xmit_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6862 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d067e __tcp_push_pending_frames (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bf70f tcp_push (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3021 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28743 [003] 441995.598244: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          861b29 sk_wait_data (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c1525 tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\niperf 28735/28739 [000] 441995.608322: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          2b5580 __wake_up_sync_key (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d65f8 tcp_prequeue (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d7781 tcp_v4_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2f6f ip_local_deliver_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b3231 ip_local_deliver (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2c2a ip_rcv_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b352d ip_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8789d7 __netif_receive_skb_core (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          878d48 __netif_receive_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          879a0f process_backlog (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8791bc net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6782 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d067e __tcp_push_pending_frames (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bf70f tcp_push (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3021 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28736 [001] 441995.608332: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          2b5580 __wake_up_sync_key (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d65f8 tcp_prequeue (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d7781 tcp_v4_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2f6f ip_local_deliver_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b3231 ip_local_deliver (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2c2a ip_rcv_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b352d ip_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8789d7 __netif_receive_skb_core (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          878d48 __netif_receive_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          879a0f process_backlog (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8791bc net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6782 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d067e __tcp_push_pending_frames (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bf70f tcp_push (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3021 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28741 [002] 441995.608333: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86bb0e skb_copy_datagram_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cc255 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\niperf 28735/28737 [003] 441995.608343: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3913 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28739 [000] 441995.618422: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3913 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28742 [001] 441995.618431: cpu-clock: \n\t          405eb5 __fget_light (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85c9a7 sockfd_lookup_light (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d3e7 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25900008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28738 [002] 441995.618435: cpu-clock: \n\t          865965 __alloc_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3763 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28737 [003] 441995.618443: cpu-clock: \n\t          8b35bc ip_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8789d7 __netif_receive_skb_core (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          878d48 __netif_receive_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          879a0f process_backlog (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8791bc net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6782 ip_finish_output2 (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b7ab3 ip_finish_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b886d ip_output (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6b61 ip_local_out_sk (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b6eca ip_queue_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf1fa tcp_transmit_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cf725 tcp_write_xmit (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d067e __tcp_push_pending_frames (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bf70f tcp_push (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3021 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28744 [000] 441995.628523: cpu-clock: \n\t          8d7037 tcp_v4_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2f6f ip_local_deliver_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b3231 ip_local_deliver (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b2c2a ip_rcv_finish (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8b352d ip_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8789d7 __netif_receive_skb_core (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          878d48 __netif_receive_skb (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          879a0f process_backlog (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8791bc net_rx_action (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          279de7 __do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          976b4c do_softirq_own_stack (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a047 do_softirq (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          27a0cd __local_bh_enable_ip (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cc012 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f259c0008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 27409/28742 [001] 441995.628533: cpu-clock: \n\t          59fef5 copy_user_enhanced_fast_string (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86bb0e skb_copy_datagram_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8cc255 tcp_rcv_established (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8d60a0 tcp_v4_do_rcv (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8bfee7 tcp_prequeue_process (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c16aa tcp_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ec08f inet_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d23b sock_recvmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d455 SYSC_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85e63e sys_recvfrom (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f7eb __libc_recv (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f25900008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n\niperf 28735/28738 [002] 441995.628543: cpu-clock: \n\t          20122a xen_hypercall_xen_version (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          20be32 check_events (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          970cb7 __schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          9712a3 schedule (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          973c9a schedule_timeout (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86d1e2 sk_stream_wait_memory (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3453 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 28735/28737 [003] 441995.628545: cpu-clock: \n\t          974bca _raw_spin_lock_irqsave (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          2b5456 finish_wait (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          86d36a sk_stream_wait_memory (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8c3453 tcp_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          8ebf17 inet_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d708 sock_sendmsg (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          85d798 sock_write_iter (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3e9b6a __vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3ea199 vfs_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          3eae86 sys_write (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t          974e36 entry_SYSCALL_64_fastpath (/lib/modules/4.3.0-rc1-virtual/build/vmlinux)\n\t            f35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t           20000 [unknown] ([unknown])\n\niperf 27409/28744 [000] 441995.638625: cpu-clock: \n\t            762f [unknown] (/usr/bin/iperf)\n\t    7f259c0008f0 [unknown] ([unknown])\n\t               0 [unknown] ([unknown])\n"
  },
  {
    "path": "test/perf-java-faults-01.txt",
    "content": "perf 47118 [011] 51499.088689:          1 page-faults: \n\t           29ebc cmd_record (/usr/bin/perf)\n\t           69695 run_builtin (/usr/bin/perf)\n\t           1cfa6 main (/usr/bin/perf)\n\t           21ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nperf 47118 [011] 51499.088702:          1 page-faults: \n\t           29f65 cmd_record (/usr/bin/perf)\n\t           69695 run_builtin (/usr/bin/perf)\n\t           1cfa6 main (/usr/bin/perf)\n\t           21ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nperf 47118 [011] 51499.088706:          1 page-faults: \n\t           29f65 cmd_record (/usr/bin/perf)\n\t           69695 run_builtin (/usr/bin/perf)\n\t           1cfa6 main (/usr/bin/perf)\n\t           21ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nperf 47118 [011] 51499.088709:          4 page-faults: \n\t           29f65 cmd_record (/usr/bin/perf)\n\t           69695 run_builtin (/usr/bin/perf)\n\t           1cfa6 main (/usr/bin/perf)\n\t           21ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nperf 47119 [029] 51499.088715:          1 page-faults: \n\t            9ffa do_lookup_x (/lib/x86_64-linux-gnu/ld-2.19.so)\n\nperf 47118 [011] 51499.088718:         33 page-faults: \n\t           29f65 cmd_record (/usr/bin/perf)\n\t           69695 run_builtin (/usr/bin/perf)\n\t           1cfa6 main (/usr/bin/perf)\n\t           21ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nperf 47119 [029] 51499.088725:          1 page-faults: \n\t            9ffa do_lookup_x (/lib/x86_64-linux-gnu/ld-2.19.so)\n\nperf 47119 [029] 51499.088733:          1 page-faults: \n\t            9ffa do_lookup_x (/lib/x86_64-linux-gnu/ld-2.19.so)\n\nperf 47119 [029] 51499.088738:          4 page-faults: \n\t            9ffa do_lookup_x (/lib/x86_64-linux-gnu/ld-2.19.so)\n\nperf 47119 [029] 51499.088764:         20 page-faults: \n\t            9ffa do_lookup_x (/lib/x86_64-linux-gnu/ld-2.19.so)\n\nsleep 47119 [021] 51499.089086:          1 page-faults: \n\t          5b0415 __clear_user (/lib/modules/4.4.9-virtual/build/vmlinux)\n\t          5b046b clear_user (/lib/modules/4.4.9-virtual/build/vmlinux)\n\t          447364 padzero (/lib/modules/4.4.9-virtual/build/vmlinux)\n\t          449719 load_elf_binary (/lib/modules/4.4.9-virtual/build/vmlinux)\n\t          3f938e search_binary_handler (/lib/modules/4.4.9-virtual/build/vmlinux)\n\t          3fa9e7 do_execveat_common.isra.31 (/lib/modules/4.4.9-virtual/build/vmlinux)\n\t          3fae1a sys_execve (/lib/modules/4.4.9-virtual/build/vmlinux)\n\t          990b95 return_from_execve (/lib/modules/4.4.9-virtual/build/vmlinux)\n\t           c1337 __execve (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nsleep 47119 [021] 51499.089108:          1 page-faults: \n\t          5b0415 __clear_user (/lib/modules/4.4.9-virtual/build/vmlinux)\n\t          5b046b clear_user (/lib/modules/4.4.9-virtual/build/vmlinux)\n\t          447364 padzero (/lib/modules/4.4.9-virtual/build/vmlinux)\n\t          44a419 load_elf_binary (/lib/modules/4.4.9-virtual/build/vmlinux)\n\t          3f938e search_binary_handler (/lib/modules/4.4.9-virtual/build/vmlinux)\n\t          3fa9e7 do_execveat_common.isra.31 (/lib/modules/4.4.9-virtual/build/vmlinux)\n\t          3fae1a sys_execve (/lib/modules/4.4.9-virtual/build/vmlinux)\n\t          990b95 return_from_execve (/lib/modules/4.4.9-virtual/build/vmlinux)\n\t           c1337 __execve (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nsleep 47119 [021] 51499.089124:          1 page-faults: \n\t          5aebb5 copy_user_enhanced_fast_string (/lib/modules/4.4.9-virtual/build/vmlinux)\n\t          3f938e search_binary_handler (/lib/modules/4.4.9-virtual/build/vmlinux)\n\t          3fa9e7 do_execveat_common.isra.31 (/lib/modules/4.4.9-virtual/build/vmlinux)\n\t          3fae1a sys_execve (/lib/modules/4.4.9-virtual/build/vmlinux)\n\t          990b95 return_from_execve (/lib/modules/4.4.9-virtual/build/vmlinux)\n\t           c1337 __execve (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nsleep 47119 [021] 51499.089142:          3 page-faults: \n\t            12d0 _start (/lib/x86_64-linux-gnu/ld-2.19.so)\n\nsleep 47119 [021] 51499.089157:          9 page-faults: \n\t            4eba _dl_start (/lib/x86_64-linux-gnu/ld-2.19.so)\n\t            12d8 _dl_start_user (/lib/x86_64-linux-gnu/ld-2.19.so)\n\nsleep 47119 [021] 51499.089220:         24 page-faults: \n\t           1a41a memcmp (/lib/x86_64-linux-gnu/ld-2.19.so)\n\t6873756c66660036 [unknown] ([unknown])\n\nsleep 47119 [021] 51499.089410:         72 page-faults: \n\t           a1a20 handle_intel (/lib/x86_64-linux-gnu/libc-2.19.so)\n\njava 43869 [025] 51499.133872:          1 page-faults: \n\t           80786 _int_malloc (/lib/x86_64-linux-gnu/libc-2.19.so)\n\njava 43869 [025] 51499.133952:          1 page-faults: \n\t           80786 _int_malloc (/lib/x86_64-linux-gnu/libc-2.19.so)\n\njava 43869 [025] 51499.133957:          1 page-faults: \n\t          1501e4 __memmove_ssse3_back (/lib/x86_64-linux-gnu/libc-2.19.so)\n\t            bfa3 inflate (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/libzip.so)\n\t            34da Java_java_util_zip_Inflater_inflateBytes (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/libzip.so)\n\t    7fcf703ea8c6 Ljava/util/zip/Inflater;::inflateBytes (/tmp/perf-43287.map)\n\t    7fcf7f388018 Lcom/XXX::XXX (/tmp/perf-43287.map)\n\t    7fcf78101ab8 Lnet/spy/memcached/transcoders/TranscodeService$1;::call (/tmp/perf-43287.map)\n\t    7fcf78bb95bc Lnet/spy/memcached/protocol/binary/GetOperationImpl;::decodePayload (/tmp/perf-43287.map)\n\t    7fcf7786b600 Lnet/spy/memcached/protocol/binary/OperationImpl;::finishedPayload (/tmp/perf-43287.map)\n\t    7fcf763ed7c8 Lnet/spy/memcached/protocol/binary/OperationImpl;::readFromBuffer (/tmp/perf-43287.map)\n\t    7fcf8efb0540 Lnet/spy/memcached/MemcachedConnection;::handleReads (/tmp/perf-43287.map)\n\t    7fcf8efc0630 Lnet/spy/memcached/MemcachedConnection;::handleIO (/tmp/perf-43287.map)\n\t    7fcf743b01b4 Lnet/spy/memcached/MemcachedConnection;::handleIO (/tmp/perf-43287.map)\n\t    7fcf75b155bc Lnet/spy/memcached/EVCacheConnection;::run (/tmp/perf-43287.map)\n\t    7fcf700004e0 call_stub (/tmp/perf-43287.map)\n\t          68c616 _ZN9JavaCalls11call_helperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/server/libjvm.so)\n\t          68cb21 _ZN9JavaCalls12call_virtualEP9JavaValue11KlassHandleP6SymbolS4_P17JavaCallArgumentsP6Thread (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/server/libjvm.so)\n\t          68cfc7 _ZN9JavaCalls12call_virtualEP9JavaValue6Handle11KlassHandleP6SymbolS5_P6Thread (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/server/libjvm.so)\n\t          723d80 _ZL12thread_entryP10JavaThreadP6Thread (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/server/libjvm.so)\n\t          a69dcf _ZN10JavaThread17thread_main_innerEv (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/server/libjvm.so)\n\t          a69efc _ZN10JavaThread3runEv (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/server/libjvm.so)\n\t          91d9d8 _ZL10java_startP6Thread (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/server/libjvm.so)\n\t            8182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\njava 43869 [025] 51499.133962:          2 page-faults: \n\t          1501e4 __memmove_ssse3_back (/lib/x86_64-linux-gnu/libc-2.19.so)\n\t            bfa3 inflate (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/libzip.so)\n\t            34da Java_java_util_zip_Inflater_inflateBytes (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/libzip.so)\n\t    7fcf703ea8c6 Ljava/util/zip/Inflater;::inflateBytes (/tmp/perf-43287.map)\n\t    7fcf7f388018 XXX::XXX (/tmp/perf-43287.map)\n\t    7fcf78101ab8 Lnet/spy/memcached/transcoders/TranscodeService$1;::call (/tmp/perf-43287.map)\n\t    7fcf78bb95bc Lnet/spy/memcached/protocol/binary/GetOperationImpl;::decodePayload (/tmp/perf-43287.map)\n\t    7fcf7786b600 Lnet/spy/memcached/protocol/binary/OperationImpl;::finishedPayload (/tmp/perf-43287.map)\n\t    7fcf763ed7c8 Lnet/spy/memcached/protocol/binary/OperationImpl;::readFromBuffer (/tmp/perf-43287.map)\n\t    7fcf8efb0540 Lnet/spy/memcached/MemcachedConnection;::handleReads (/tmp/perf-43287.map)\n\t    7fcf8efc0630 Lnet/spy/memcached/MemcachedConnection;::handleIO (/tmp/perf-43287.map)\n\t    7fcf743b01b4 Lnet/spy/memcached/MemcachedConnection;::handleIO (/tmp/perf-43287.map)\n\t    7fcf75b155bc Lnet/spy/memcached/EVCacheConnection;::run (/tmp/perf-43287.map)\n\t    7fcf700004e0 call_stub (/tmp/perf-43287.map)\n\t          68c616 _ZN9JavaCalls11call_helperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/server/libjvm.so)\n\t          68cb21 _ZN9JavaCalls12call_virtualEP9JavaValue11KlassHandleP6SymbolS4_P17JavaCallArgumentsP6Thread (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/server/libjvm.so)\n\t          68cfc7 _ZN9JavaCalls12call_virtualEP9JavaValue6Handle11KlassHandleP6SymbolS5_P6Thread (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/server/libjvm.so)\n\t          723d80 _ZL12thread_entryP10JavaThreadP6Thread (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/server/libjvm.so)\n\t          a69dcf _ZN10JavaThread17thread_main_innerEv (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/server/libjvm.so)\n\t          a69efc _ZN10JavaThread3runEv (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/server/libjvm.so)\n\t          91d9d8 _ZL10java_startP6Thread (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/server/libjvm.so)\n\t            8182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\njava 43869 [025] 51499.134005:         16 page-faults: \n\t          1501e4 __memmove_ssse3_back (/lib/x86_64-linux-gnu/libc-2.19.so)\n\t            bfa3 inflate (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/libzip.so)\n\t            34da Java_java_util_zip_Inflater_inflateBytes (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/libzip.so)\n\t    7fcf703ea8c6 Ljava/util/zip/Inflater;::inflateBytes (/tmp/perf-43287.map)\n\t    7fcf7f388018 XXX::XXX (/tmp/perf-43287.map)\n\t    7fcf78101ab8 Lnet/spy/memcached/transcoders/TranscodeService$1;::call (/tmp/perf-43287.map)\n\t    7fcf78bb95bc Lnet/spy/memcached/protocol/binary/GetOperationImpl;::decodePayload (/tmp/perf-43287.map)\n\t    7fcf7786b600 Lnet/spy/memcached/protocol/binary/OperationImpl;::finishedPayload (/tmp/perf-43287.map)\n\t    7fcf763ed7c8 Lnet/spy/memcached/protocol/binary/OperationImpl;::readFromBuffer (/tmp/perf-43287.map)\n\t    7fcf8efb0540 Lnet/spy/memcached/MemcachedConnection;::handleReads (/tmp/perf-43287.map)\n\t    7fcf8efc0630 Lnet/spy/memcached/MemcachedConnection;::handleIO (/tmp/perf-43287.map)\n\t    7fcf743b01b4 Lnet/spy/memcached/MemcachedConnection;::handleIO (/tmp/perf-43287.map)\n\t    7fcf75b155bc Lnet/spy/memcached/EVCacheConnection;::run (/tmp/perf-43287.map)\n\t    7fcf700004e0 call_stub (/tmp/perf-43287.map)\n\t          68c616 _ZN9JavaCalls11call_helperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/server/libjvm.so)\n\t          68cb21 _ZN9JavaCalls12call_virtualEP9JavaValue11KlassHandleP6SymbolS4_P17JavaCallArgumentsP6Thread (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/server/libjvm.so)\n\t          68cfc7 _ZN9JavaCalls12call_virtualEP9JavaValue6Handle11KlassHandleP6SymbolS5_P6Thread (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/server/libjvm.so)\n\t          723d80 _ZL12thread_entryP10JavaThreadP6Thread (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/server/libjvm.so)\n\t          a69dcf _ZN10JavaThread17thread_main_innerEv (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/server/libjvm.so)\n\t          a69efc _ZN10JavaThread3runEv (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/server/libjvm.so)\n\t          91d9d8 _ZL10java_startP6Thread (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/server/libjvm.so)\n\t            8182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\njava 44406 [013] 51499.134798:          1 page-faults: \n\t    7fcf73dcea29 Lorg/apache/tomcat/jni/Socket;::sendbb (/tmp/perf-43287.map)\n\t    7fcf77b96440 Lorg/apache/coyote/http11/AbstractHttp11Processor;::action (/tmp/perf-43287.map)\n\t    7fcf932a30e0 Lorg/apache/catalina/connector/CoyoteAdapter;::service (/tmp/perf-43287.map)\n\t    7fcf79ac3840 Lorg/apache/coyote/http11/AbstractHttp11Processor;::process (/tmp/perf-43287.map)\n\t    7fcf853cee48 Lorg/apache/coyote/AbstractProtocol$AbstractConnectionHandler;::process (/tmp/perf-43287.map)\n\t    7fcf7f38306c Lorg/apache/tomcat/util/net/AprEndpoint$SocketProcessor;::doRun (/tmp/perf-43287.map)\n\t    7fcf7f41faa8 Lorg/apache/tomcat/util/net/AprEndpoint$SocketProcessor;::run (/tmp/perf-43287.map)\n\t    7fcf75c71028 Ljava/util/concurrent/ThreadPoolExecutor;::runWorker (/tmp/perf-43287.map)\n\t    7fcf73173544 Ljava/util/concurrent/ThreadPoolExecutor$Worker;::run (/tmp/perf-43287.map)\n\t    7fcf700079a9 Interpreter (/tmp/perf-43287.map)\n\t    7fcf7316bbc4 Ljava/lang/Thread;::run (/tmp/perf-43287.map)\n\t    7fcf700004e0 call_stub (/tmp/perf-43287.map)\n\t          68c616 _ZN9JavaCalls11call_helperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/server/libjvm.so)\n\t          68cb21 _ZN9JavaCalls12call_virtualEP9JavaValue11KlassHandleP6SymbolS4_P17JavaCallArgumentsP6Thread (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/server/libjvm.so)\n\t          68cfc7 _ZN9JavaCalls12call_virtualEP9JavaValue6Handle11KlassHandleP6SymbolS5_P6Thread (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/server/libjvm.so)\n\t          723d80 _ZL12thread_entryP10JavaThreadP6Thread (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/server/libjvm.so)\n\t          a69dcf _ZN10JavaThread17thread_main_innerEv (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/server/libjvm.so)\n\t          a69efc _ZN10JavaThread3runEv (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/server/libjvm.so)\n\t          91d9d8 _ZL10java_startP6Thread (/usr/lib/jvm/java-8-oracle-1.8.0.72/jre/lib/amd64/server/libjvm.so)\n\t            8182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\n"
  },
  {
    "path": "test/perf-java-stacks-01.txt",
    "content": "# ========\n# captured on: Sun Oct 25 23:31:43 2015\n# hostname : lgud-bgregg\n# os release : 3.13.0-44-generic\n# perf version : 3.13.11-ckt12\n# arch : x86_64\n# nrcpus online : 4\n# nrcpus avail : 4\n# cpudesc : Intel(R) Core(TM) i5-2400 CPU @ 3.10GHz\n# cpuid : GenuineIntel,6,42,7\n# total memory : 4005800 kB\n# cmdline : /usr/lib/linux-tools-3.13.0-44/perf record -F 99 -a -g -- sleep 30 \n# event : name = cycles, type = 0, config = 0x0, config1 = 0x0, config2 = 0x0, excl_usr = 0, excl_kern = 0, excl_host = 0, excl_guest = 1, precise_ip = 0, attr_mmap2 = 0, attr_mmap  = 1, attr_mmap_data = 0\n# HEADER_CPU_TOPOLOGY info available, use -I to display\n# HEADER_NUMA_TOPOLOGY info available, use -I to display\n# pmu mappings: cpu = 4, software = 1, tracepoint = 2, uncore_cbox_0 = 6, uncore_cbox_1 = 7, uncore_cbox_2 = 8, uncore_cbox_3 = 9, breakpoint = 5\n# ========\n#\nab 23927 [000] 184694.229089: cycles: \n\tffffffff8104f45a native_write_msr_safe ([kernel.kallsyms])\n\tffffffff8102f8bc intel_pmu_enable_all ([kernel.kallsyms])\n\tffffffff81029b14 x86_pmu_enable ([kernel.kallsyms])\n\tffffffff81142a77 perf_pmu_enable ([kernel.kallsyms])\n\tffffffff81027bfa x86_pmu_commit_txn ([kernel.kallsyms])\n\tffffffff811434f0 group_sched_in ([kernel.kallsyms])\n\tffffffff811439b2 __perf_event_enable ([kernel.kallsyms])\n\tffffffff8113f620 remote_function ([kernel.kallsyms])\n\tffffffff810dc880 generic_smp_call_function_single_interrupt ([kernel.kallsyms])\n\tffffffff81040ac7 smp_call_function_single_interrupt ([kernel.kallsyms])\n\tffffffff81732a5d call_function_single_interrupt ([kernel.kallsyms])\n\tffffffff816937b4 inet_sendmsg ([kernel.kallsyms])\n\tffffffff8160b55e sock_aio_write ([kernel.kallsyms])\n\tffffffff811bd4aa do_sync_write ([kernel.kallsyms])\n\tffffffff811bdd2d vfs_write ([kernel.kallsyms])\n\tffffffff811be669 sys_write ([kernel.kallsyms])\n\tffffffff8173186d system_call_fastpath ([kernel.kallsyms])\n\t    7f26dc479340 __write_nocancel (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f26cab4c0b0 [unknown] ([unknown])\n\nab 23927 [000] 184694.229097: cycles: \n\tffffffff8104f45a native_write_msr_safe ([kernel.kallsyms])\n\tffffffff8102f8bc intel_pmu_enable_all ([kernel.kallsyms])\n\tffffffff81029b14 x86_pmu_enable ([kernel.kallsyms])\n\tffffffff81142a77 perf_pmu_enable ([kernel.kallsyms])\n\tffffffff81027bfa x86_pmu_commit_txn ([kernel.kallsyms])\n\tffffffff811434f0 group_sched_in ([kernel.kallsyms])\n\tffffffff811439b2 __perf_event_enable ([kernel.kallsyms])\n\tffffffff8113f620 remote_function ([kernel.kallsyms])\n\tffffffff810dc880 generic_smp_call_function_single_interrupt ([kernel.kallsyms])\n\tffffffff81040ac7 smp_call_function_single_interrupt ([kernel.kallsyms])\n\tffffffff81732a5d call_function_single_interrupt ([kernel.kallsyms])\n\tffffffff816937b4 inet_sendmsg ([kernel.kallsyms])\n\tffffffff8160b55e sock_aio_write ([kernel.kallsyms])\n\tffffffff811bd4aa do_sync_write ([kernel.kallsyms])\n\tffffffff811bdd2d vfs_write ([kernel.kallsyms])\n\tffffffff811be669 sys_write ([kernel.kallsyms])\n\tffffffff8173186d system_call_fastpath ([kernel.kallsyms])\n\t    7f26dc479340 __write_nocancel (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f26cab4c0b0 [unknown] ([unknown])\n\nab 23927 [000] 184694.229099: cycles: \n\tffffffff8104f45a native_write_msr_safe ([kernel.kallsyms])\n\tffffffff8102f8bc intel_pmu_enable_all ([kernel.kallsyms])\n\tffffffff81029b14 x86_pmu_enable ([kernel.kallsyms])\n\tffffffff81142a77 perf_pmu_enable ([kernel.kallsyms])\n\tffffffff81027bfa x86_pmu_commit_txn ([kernel.kallsyms])\n\tffffffff811434f0 group_sched_in ([kernel.kallsyms])\n\tffffffff811439b2 __perf_event_enable ([kernel.kallsyms])\n\tffffffff8113f620 remote_function ([kernel.kallsyms])\n\tffffffff810dc880 generic_smp_call_function_single_interrupt ([kernel.kallsyms])\n\tffffffff81040ac7 smp_call_function_single_interrupt ([kernel.kallsyms])\n\tffffffff81732a5d call_function_single_interrupt ([kernel.kallsyms])\n\tffffffff816937b4 inet_sendmsg ([kernel.kallsyms])\n\tffffffff8160b55e sock_aio_write ([kernel.kallsyms])\n\tffffffff811bd4aa do_sync_write ([kernel.kallsyms])\n\tffffffff811bdd2d vfs_write ([kernel.kallsyms])\n\tffffffff811be669 sys_write ([kernel.kallsyms])\n\tffffffff8173186d system_call_fastpath ([kernel.kallsyms])\n\t    7f26dc479340 __write_nocancel (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f26cab4c0b0 [unknown] ([unknown])\n\nab 23927 [000] 184694.229101: cycles: \n\tffffffff8104f45a native_write_msr_safe ([kernel.kallsyms])\n\tffffffff8102f8bc intel_pmu_enable_all ([kernel.kallsyms])\n\tffffffff81029b14 x86_pmu_enable ([kernel.kallsyms])\n\tffffffff81142a77 perf_pmu_enable ([kernel.kallsyms])\n\tffffffff81027bfa x86_pmu_commit_txn ([kernel.kallsyms])\n\tffffffff811434f0 group_sched_in ([kernel.kallsyms])\n\tffffffff811439b2 __perf_event_enable ([kernel.kallsyms])\n\tffffffff8113f620 remote_function ([kernel.kallsyms])\n\tffffffff810dc880 generic_smp_call_function_single_interrupt ([kernel.kallsyms])\n\tffffffff81040ac7 smp_call_function_single_interrupt ([kernel.kallsyms])\n\tffffffff81732a5d call_function_single_interrupt ([kernel.kallsyms])\n\tffffffff816937b4 inet_sendmsg ([kernel.kallsyms])\n\tffffffff8160b55e sock_aio_write ([kernel.kallsyms])\n\tffffffff811bd4aa do_sync_write ([kernel.kallsyms])\n\tffffffff811bdd2d vfs_write ([kernel.kallsyms])\n\tffffffff811be669 sys_write ([kernel.kallsyms])\n\tffffffff8173186d system_call_fastpath ([kernel.kallsyms])\n\t    7f26dc479340 __write_nocancel (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f26cab4c0b0 [unknown] ([unknown])\n\njava 23921 [001] 184694.229109: cycles: \n\tffffffff8104f45a native_write_msr_safe ([kernel.kallsyms])\n\tffffffff8102f8bc intel_pmu_enable_all ([kernel.kallsyms])\n\tffffffff81029b14 x86_pmu_enable ([kernel.kallsyms])\n\tffffffff81142a77 perf_pmu_enable ([kernel.kallsyms])\n\tffffffff81027bfa x86_pmu_commit_txn ([kernel.kallsyms])\n\tffffffff811434f0 group_sched_in ([kernel.kallsyms])\n\tffffffff811439b2 __perf_event_enable ([kernel.kallsyms])\n\tffffffff8113f620 remote_function ([kernel.kallsyms])\n\tffffffff810dc880 generic_smp_call_function_single_interrupt ([kernel.kallsyms])\n\tffffffff81040ac7 smp_call_function_single_interrupt ([kernel.kallsyms])\n\tffffffff81732a5d call_function_single_interrupt ([kernel.kallsyms])\n\t    7f6b2d259b1d Lorg/mozilla/javascript/WrapFactory;.wrap (/tmp/perf-23895.map)\n\t    7f6b2d329384 Lorg/vertx/java/core/http/impl/ServerConnection;.handleMessage (/tmp/perf-23895.map)\n\t    7f6b2d350a70 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived (/tmp/perf-23895.map)\n\t    7f6b2d325fac Lorg/vertx/java/core/http/impl/VertxHttpHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d341798 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d41812c Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d558468 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read (/tmp/perf-23895.map)\n\t    7f6b2d55a664 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey (/tmp/perf-23895.map)\n\t    7f6b2d58f7f0 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized (/tmp/perf-23895.map)\n\t    7f6b2d5c324c Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\njava 23921 [001] 184694.229114: cycles: \n\tffffffff8104f45a native_write_msr_safe ([kernel.kallsyms])\n\tffffffff8102f8bc intel_pmu_enable_all ([kernel.kallsyms])\n\tffffffff81029b14 x86_pmu_enable ([kernel.kallsyms])\n\tffffffff81142a77 perf_pmu_enable ([kernel.kallsyms])\n\tffffffff81027bfa x86_pmu_commit_txn ([kernel.kallsyms])\n\tffffffff811434f0 group_sched_in ([kernel.kallsyms])\n\tffffffff811439b2 __perf_event_enable ([kernel.kallsyms])\n\tffffffff8113f620 remote_function ([kernel.kallsyms])\n\tffffffff810dc880 generic_smp_call_function_single_interrupt ([kernel.kallsyms])\n\tffffffff81040ac7 smp_call_function_single_interrupt ([kernel.kallsyms])\n\tffffffff81732a5d call_function_single_interrupt ([kernel.kallsyms])\n\t    7f6b2d259b1d Lorg/mozilla/javascript/WrapFactory;.wrap (/tmp/perf-23895.map)\n\t    7f6b2d329384 Lorg/vertx/java/core/http/impl/ServerConnection;.handleMessage (/tmp/perf-23895.map)\n\t    7f6b2d350a70 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived (/tmp/perf-23895.map)\n\t    7f6b2d325fac Lorg/vertx/java/core/http/impl/VertxHttpHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d341798 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d41812c Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d558468 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read (/tmp/perf-23895.map)\n\t    7f6b2d55a664 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey (/tmp/perf-23895.map)\n\t    7f6b2d58f7f0 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized (/tmp/perf-23895.map)\n\t    7f6b2d5c324c Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\njava 23921 [001] 184694.229117: cycles: \n\tffffffff8104f45a native_write_msr_safe ([kernel.kallsyms])\n\tffffffff8102f8bc intel_pmu_enable_all ([kernel.kallsyms])\n\tffffffff81029b14 x86_pmu_enable ([kernel.kallsyms])\n\tffffffff81142a77 perf_pmu_enable ([kernel.kallsyms])\n\tffffffff81027bfa x86_pmu_commit_txn ([kernel.kallsyms])\n\tffffffff811434f0 group_sched_in ([kernel.kallsyms])\n\tffffffff811439b2 __perf_event_enable ([kernel.kallsyms])\n\tffffffff8113f620 remote_function ([kernel.kallsyms])\n\tffffffff810dc880 generic_smp_call_function_single_interrupt ([kernel.kallsyms])\n\tffffffff81040ac7 smp_call_function_single_interrupt ([kernel.kallsyms])\n\tffffffff81732a5d call_function_single_interrupt ([kernel.kallsyms])\n\t    7f6b2d259b1d Lorg/mozilla/javascript/WrapFactory;.wrap (/tmp/perf-23895.map)\n\t    7f6b2d329384 Lorg/vertx/java/core/http/impl/ServerConnection;.handleMessage (/tmp/perf-23895.map)\n\t    7f6b2d350a70 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived (/tmp/perf-23895.map)\n\t    7f6b2d325fac Lorg/vertx/java/core/http/impl/VertxHttpHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d341798 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d41812c Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d558468 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read (/tmp/perf-23895.map)\n\t    7f6b2d55a664 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey (/tmp/perf-23895.map)\n\t    7f6b2d58f7f0 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized (/tmp/perf-23895.map)\n\t    7f6b2d5c324c Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\njava 23921 [001] 184694.229119: cycles: \n\tffffffff8104f45a native_write_msr_safe ([kernel.kallsyms])\n\tffffffff8102f8bc intel_pmu_enable_all ([kernel.kallsyms])\n\tffffffff81029b14 x86_pmu_enable ([kernel.kallsyms])\n\tffffffff81142a77 perf_pmu_enable ([kernel.kallsyms])\n\tffffffff81027bfa x86_pmu_commit_txn ([kernel.kallsyms])\n\tffffffff811434f0 group_sched_in ([kernel.kallsyms])\n\tffffffff811439b2 __perf_event_enable ([kernel.kallsyms])\n\tffffffff8113f620 remote_function ([kernel.kallsyms])\n\tffffffff810dc880 generic_smp_call_function_single_interrupt ([kernel.kallsyms])\n\tffffffff81040ac7 smp_call_function_single_interrupt ([kernel.kallsyms])\n\tffffffff81732a5d call_function_single_interrupt ([kernel.kallsyms])\n\t    7f6b2d259b1d Lorg/mozilla/javascript/WrapFactory;.wrap (/tmp/perf-23895.map)\n\t    7f6b2d329384 Lorg/vertx/java/core/http/impl/ServerConnection;.handleMessage (/tmp/perf-23895.map)\n\t    7f6b2d350a70 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived (/tmp/perf-23895.map)\n\t    7f6b2d325fac Lorg/vertx/java/core/http/impl/VertxHttpHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d341798 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d41812c Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d558468 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read (/tmp/perf-23895.map)\n\t    7f6b2d55a664 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey (/tmp/perf-23895.map)\n\t    7f6b2d58f7f0 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized (/tmp/perf-23895.map)\n\t    7f6b2d5c324c Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\nperf 23929 [002] 184694.229126: cycles: \n\tffffffff8104f45a native_write_msr_safe ([kernel.kallsyms])\n\tffffffff8102f8bc intel_pmu_enable_all ([kernel.kallsyms])\n\tffffffff81029b14 x86_pmu_enable ([kernel.kallsyms])\n\tffffffff81142a77 perf_pmu_enable ([kernel.kallsyms])\n\tffffffff81027bfa x86_pmu_commit_txn ([kernel.kallsyms])\n\tffffffff811434f0 group_sched_in ([kernel.kallsyms])\n\tffffffff811439b2 __perf_event_enable ([kernel.kallsyms])\n\tffffffff8113f620 remote_function ([kernel.kallsyms])\n\tffffffff810dbfef smp_call_function_single ([kernel.kallsyms])\n\tffffffff8113e044 cpu_function_call ([kernel.kallsyms])\n\tffffffff811419f5 perf_event_enable ([kernel.kallsyms])\n\tffffffff8113e0d8 perf_event_for_each_child ([kernel.kallsyms])\n\tffffffff81141b1b perf_ioctl ([kernel.kallsyms])\n\tffffffff811d0e80 do_vfs_ioctl ([kernel.kallsyms])\n\tffffffff811d10e1 sys_ioctl ([kernel.kallsyms])\n\tffffffff8173186d system_call_fastpath ([kernel.kallsyms])\n\t    7f2ccba26ec7 __GI___ioctl (/lib/x86_64-linux-gnu/libc-2.19.so)\n\t          415ad5 [unknown] (/usr/lib/linux-tools-3.13.0-44/perf)\n\t          4081a5 [unknown] (/usr/lib/linux-tools-3.13.0-44/perf)\n\t          407a40 [unknown] (/usr/lib/linux-tools-3.13.0-44/perf)\n\t    7f2ccb956ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nswapper     0 [000] 184694.229130: cycles: \n\tffffffff810c8c9e rcu_idle_enter ([kernel.kallsyms])\n\tffffffff810bef30 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8170f247 rest_init ([kernel.kallsyms])\n\tffffffff81d35f70 start_kernel ([kernel.kallsyms])\n\tffffffff81d355ee x86_64_start_reservations ([kernel.kallsyms])\n\tffffffff81d35733 x86_64_start_kernel ([kernel.kallsyms])\n\nperf 23929 [002] 184694.229130: cycles: \n\tffffffff8104f45a native_write_msr_safe ([kernel.kallsyms])\n\tffffffff8102f8bc intel_pmu_enable_all ([kernel.kallsyms])\n\tffffffff81029b14 x86_pmu_enable ([kernel.kallsyms])\n\tffffffff81142a77 perf_pmu_enable ([kernel.kallsyms])\n\tffffffff81027bfa x86_pmu_commit_txn ([kernel.kallsyms])\n\tffffffff811434f0 group_sched_in ([kernel.kallsyms])\n\tffffffff811439b2 __perf_event_enable ([kernel.kallsyms])\n\tffffffff8113f620 remote_function ([kernel.kallsyms])\n\tffffffff810dbfef smp_call_function_single ([kernel.kallsyms])\n\tffffffff8113e044 cpu_function_call ([kernel.kallsyms])\n\tffffffff811419f5 perf_event_enable ([kernel.kallsyms])\n\tffffffff8113e0d8 perf_event_for_each_child ([kernel.kallsyms])\n\tffffffff81141b1b perf_ioctl ([kernel.kallsyms])\n\tffffffff811d0e80 do_vfs_ioctl ([kernel.kallsyms])\n\tffffffff811d10e1 sys_ioctl ([kernel.kallsyms])\n\tffffffff8173186d system_call_fastpath ([kernel.kallsyms])\n\t    7f2ccba26ec7 __GI___ioctl (/lib/x86_64-linux-gnu/libc-2.19.so)\n\t          415ad5 [unknown] (/usr/lib/linux-tools-3.13.0-44/perf)\n\t          4081a5 [unknown] (/usr/lib/linux-tools-3.13.0-44/perf)\n\t          407a40 [unknown] (/usr/lib/linux-tools-3.13.0-44/perf)\n\t    7f2ccb956ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nperf 23929 [002] 184694.229133: cycles: \n\tffffffff8104f45a native_write_msr_safe ([kernel.kallsyms])\n\tffffffff8102f8bc intel_pmu_enable_all ([kernel.kallsyms])\n\tffffffff81029b14 x86_pmu_enable ([kernel.kallsyms])\n\tffffffff81142a77 perf_pmu_enable ([kernel.kallsyms])\n\tffffffff81027bfa x86_pmu_commit_txn ([kernel.kallsyms])\n\tffffffff811434f0 group_sched_in ([kernel.kallsyms])\n\tffffffff811439b2 __perf_event_enable ([kernel.kallsyms])\n\tffffffff8113f620 remote_function ([kernel.kallsyms])\n\tffffffff810dbfef smp_call_function_single ([kernel.kallsyms])\n\tffffffff8113e044 cpu_function_call ([kernel.kallsyms])\n\tffffffff811419f5 perf_event_enable ([kernel.kallsyms])\n\tffffffff8113e0d8 perf_event_for_each_child ([kernel.kallsyms])\n\tffffffff81141b1b perf_ioctl ([kernel.kallsyms])\n\tffffffff811d0e80 do_vfs_ioctl ([kernel.kallsyms])\n\tffffffff811d10e1 sys_ioctl ([kernel.kallsyms])\n\tffffffff8173186d system_call_fastpath ([kernel.kallsyms])\n\t    7f2ccba26ec7 __GI___ioctl (/lib/x86_64-linux-gnu/libc-2.19.so)\n\t          415ad5 [unknown] (/usr/lib/linux-tools-3.13.0-44/perf)\n\t          4081a5 [unknown] (/usr/lib/linux-tools-3.13.0-44/perf)\n\t          407a40 [unknown] (/usr/lib/linux-tools-3.13.0-44/perf)\n\t    7f2ccb956ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\nperf 23929 [002] 184694.229135: cycles: \n\tffffffff8104f45a native_write_msr_safe ([kernel.kallsyms])\n\tffffffff8102f8bc intel_pmu_enable_all ([kernel.kallsyms])\n\tffffffff81029b14 x86_pmu_enable ([kernel.kallsyms])\n\tffffffff81142a77 perf_pmu_enable ([kernel.kallsyms])\n\tffffffff81027bfa x86_pmu_commit_txn ([kernel.kallsyms])\n\tffffffff811434f0 group_sched_in ([kernel.kallsyms])\n\tffffffff811439b2 __perf_event_enable ([kernel.kallsyms])\n\tffffffff8113f620 remote_function ([kernel.kallsyms])\n\tffffffff810dbfef smp_call_function_single ([kernel.kallsyms])\n\tffffffff8113e044 cpu_function_call ([kernel.kallsyms])\n\tffffffff811419f5 perf_event_enable ([kernel.kallsyms])\n\tffffffff8113e0d8 perf_event_for_each_child ([kernel.kallsyms])\n\tffffffff81141b1b perf_ioctl ([kernel.kallsyms])\n\tffffffff811d0e80 do_vfs_ioctl ([kernel.kallsyms])\n\tffffffff811d10e1 sys_ioctl ([kernel.kallsyms])\n\tffffffff8173186d system_call_fastpath ([kernel.kallsyms])\n\t    7f2ccba26ec7 __GI___ioctl (/lib/x86_64-linux-gnu/libc-2.19.so)\n\t          415ad5 [unknown] (/usr/lib/linux-tools-3.13.0-44/perf)\n\t          4081a5 [unknown] (/usr/lib/linux-tools-3.13.0-44/perf)\n\t          407a40 [unknown] (/usr/lib/linux-tools-3.13.0-44/perf)\n\t    7f2ccb956ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\njava 23923 [003] 184694.229142: cycles: \n\tffffffff8104f45a native_write_msr_safe ([kernel.kallsyms])\n\tffffffff8102f8bc intel_pmu_enable_all ([kernel.kallsyms])\n\tffffffff81029b14 x86_pmu_enable ([kernel.kallsyms])\n\tffffffff81142a77 perf_pmu_enable ([kernel.kallsyms])\n\tffffffff81027bfa x86_pmu_commit_txn ([kernel.kallsyms])\n\tffffffff811434f0 group_sched_in ([kernel.kallsyms])\n\tffffffff811439b2 __perf_event_enable ([kernel.kallsyms])\n\tffffffff8113f620 remote_function ([kernel.kallsyms])\n\tffffffff810dc880 generic_smp_call_function_single_interrupt ([kernel.kallsyms])\n\tffffffff81040ac7 smp_call_function_single_interrupt ([kernel.kallsyms])\n\tffffffff81732a5d call_function_single_interrupt ([kernel.kallsyms])\n\t    7f6b2d0bbad0 Lorg/mozilla/javascript/TopLevel;.getBuiltinPrototype (/tmp/perf-23895.map)\n\t    7f6b2d0c8544 Lorg/mozilla/javascript/NativeFunction;.initScriptFunction (/tmp/perf-23895.map)\n\t    7f6b2d1dd178 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.<init> (/tmp/perf-23895.map)\n\t    7f6b2d595d2c Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;._c_anonymous_3 (/tmp/perf-23895.map)\n\t    7f6b2d4bbef8 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.call (/tmp/perf-23895.map)\n\t    7f6b2d2f4068 Lorg/mozilla/javascript/BaseFunction;.construct (/tmp/perf-23895.map)\n\t    7f6b2d4bc4bc Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.call (/tmp/perf-23895.map)\n\t    7f6b2d4bbdfc Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.call (/tmp/perf-23895.map)\n\t    7f6b2d329434 Lorg/vertx/java/core/http/impl/ServerConnection;.handleMessage (/tmp/perf-23895.map)\n\t    7f6b2d350a70 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived (/tmp/perf-23895.map)\n\t    7f6b2d325fac Lorg/vertx/java/core/http/impl/VertxHttpHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d341798 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d41812c Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d558468 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read (/tmp/perf-23895.map)\n\t    7f6b2d55a664 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey (/tmp/perf-23895.map)\n\t    7f6b2d58f7f0 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized (/tmp/perf-23895.map)\n\t    7f6b2d5c324c Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\njava 23923 [003] 184694.229148: cycles: \n\tffffffff8104f45a native_write_msr_safe ([kernel.kallsyms])\n\tffffffff8102f8bc intel_pmu_enable_all ([kernel.kallsyms])\n\tffffffff81029b14 x86_pmu_enable ([kernel.kallsyms])\n\tffffffff81142a77 perf_pmu_enable ([kernel.kallsyms])\n\tffffffff81027bfa x86_pmu_commit_txn ([kernel.kallsyms])\n\tffffffff811434f0 group_sched_in ([kernel.kallsyms])\n\tffffffff811439b2 __perf_event_enable ([kernel.kallsyms])\n\tffffffff8113f620 remote_function ([kernel.kallsyms])\n\tffffffff810dc880 generic_smp_call_function_single_interrupt ([kernel.kallsyms])\n\tffffffff81040ac7 smp_call_function_single_interrupt ([kernel.kallsyms])\n\tffffffff81732a5d call_function_single_interrupt ([kernel.kallsyms])\n\t    7f6b2d0bbad0 Lorg/mozilla/javascript/TopLevel;.getBuiltinPrototype (/tmp/perf-23895.map)\n\t    7f6b2d0c8544 Lorg/mozilla/javascript/NativeFunction;.initScriptFunction (/tmp/perf-23895.map)\n\t    7f6b2d1dd178 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.<init> (/tmp/perf-23895.map)\n\t    7f6b2d595d2c Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;._c_anonymous_3 (/tmp/perf-23895.map)\n\t    7f6b2d4bbef8 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.call (/tmp/perf-23895.map)\n\t    7f6b2d2f4068 Lorg/mozilla/javascript/BaseFunction;.construct (/tmp/perf-23895.map)\n\t    7f6b2d4bc4bc Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.call (/tmp/perf-23895.map)\n\t    7f6b2d4bbdfc Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.call (/tmp/perf-23895.map)\n\t    7f6b2d329434 Lorg/vertx/java/core/http/impl/ServerConnection;.handleMessage (/tmp/perf-23895.map)\n\t    7f6b2d350a70 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived (/tmp/perf-23895.map)\n\t    7f6b2d325fac Lorg/vertx/java/core/http/impl/VertxHttpHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d341798 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d41812c Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d558468 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read (/tmp/perf-23895.map)\n\t    7f6b2d55a664 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey (/tmp/perf-23895.map)\n\t    7f6b2d58f7f0 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized (/tmp/perf-23895.map)\n\t    7f6b2d5c324c Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\njava 23923 [003] 184694.229150: cycles: \n\tffffffff8104f45a native_write_msr_safe ([kernel.kallsyms])\n\tffffffff8102f8bc intel_pmu_enable_all ([kernel.kallsyms])\n\tffffffff81029b14 x86_pmu_enable ([kernel.kallsyms])\n\tffffffff81142a77 perf_pmu_enable ([kernel.kallsyms])\n\tffffffff81027bfa x86_pmu_commit_txn ([kernel.kallsyms])\n\tffffffff811434f0 group_sched_in ([kernel.kallsyms])\n\tffffffff811439b2 __perf_event_enable ([kernel.kallsyms])\n\tffffffff8113f620 remote_function ([kernel.kallsyms])\n\tffffffff810dc880 generic_smp_call_function_single_interrupt ([kernel.kallsyms])\n\tffffffff81040ac7 smp_call_function_single_interrupt ([kernel.kallsyms])\n\tffffffff81732a5d call_function_single_interrupt ([kernel.kallsyms])\n\t    7f6b2d0bbad0 Lorg/mozilla/javascript/TopLevel;.getBuiltinPrototype (/tmp/perf-23895.map)\n\t    7f6b2d0c8544 Lorg/mozilla/javascript/NativeFunction;.initScriptFunction (/tmp/perf-23895.map)\n\t    7f6b2d1dd178 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.<init> (/tmp/perf-23895.map)\n\t    7f6b2d595d2c Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;._c_anonymous_3 (/tmp/perf-23895.map)\n\t    7f6b2d4bbef8 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.call (/tmp/perf-23895.map)\n\t    7f6b2d2f4068 Lorg/mozilla/javascript/BaseFunction;.construct (/tmp/perf-23895.map)\n\t    7f6b2d4bc4bc Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.call (/tmp/perf-23895.map)\n\t    7f6b2d4bbdfc Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.call (/tmp/perf-23895.map)\n\t    7f6b2d329434 Lorg/vertx/java/core/http/impl/ServerConnection;.handleMessage (/tmp/perf-23895.map)\n\t    7f6b2d350a70 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived (/tmp/perf-23895.map)\n\t    7f6b2d325fac Lorg/vertx/java/core/http/impl/VertxHttpHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d341798 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d41812c Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d558468 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read (/tmp/perf-23895.map)\n\t    7f6b2d55a664 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey (/tmp/perf-23895.map)\n\t    7f6b2d58f7f0 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized (/tmp/perf-23895.map)\n\t    7f6b2d5c324c Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\njava 23923 [003] 184694.229153: cycles: \n\tffffffff8104f45a native_write_msr_safe ([kernel.kallsyms])\n\tffffffff8102f8bc intel_pmu_enable_all ([kernel.kallsyms])\n\tffffffff81029b14 x86_pmu_enable ([kernel.kallsyms])\n\tffffffff81142a77 perf_pmu_enable ([kernel.kallsyms])\n\tffffffff81027bfa x86_pmu_commit_txn ([kernel.kallsyms])\n\tffffffff811434f0 group_sched_in ([kernel.kallsyms])\n\tffffffff811439b2 __perf_event_enable ([kernel.kallsyms])\n\tffffffff8113f620 remote_function ([kernel.kallsyms])\n\tffffffff810dc880 generic_smp_call_function_single_interrupt ([kernel.kallsyms])\n\tffffffff81040ac7 smp_call_function_single_interrupt ([kernel.kallsyms])\n\tffffffff81732a5d call_function_single_interrupt ([kernel.kallsyms])\n\t    7f6b2d0bbad0 Lorg/mozilla/javascript/TopLevel;.getBuiltinPrototype (/tmp/perf-23895.map)\n\t    7f6b2d0c8544 Lorg/mozilla/javascript/NativeFunction;.initScriptFunction (/tmp/perf-23895.map)\n\t    7f6b2d1dd178 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.<init> (/tmp/perf-23895.map)\n\t    7f6b2d595d2c Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;._c_anonymous_3 (/tmp/perf-23895.map)\n\t    7f6b2d4bbef8 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.call (/tmp/perf-23895.map)\n\t    7f6b2d2f4068 Lorg/mozilla/javascript/BaseFunction;.construct (/tmp/perf-23895.map)\n\t    7f6b2d4bc4bc Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.call (/tmp/perf-23895.map)\n\t    7f6b2d4bbdfc Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.call (/tmp/perf-23895.map)\n\t    7f6b2d329434 Lorg/vertx/java/core/http/impl/ServerConnection;.handleMessage (/tmp/perf-23895.map)\n\t    7f6b2d350a70 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived (/tmp/perf-23895.map)\n\t    7f6b2d325fac Lorg/vertx/java/core/http/impl/VertxHttpHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d341798 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d41812c Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d558468 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read (/tmp/perf-23895.map)\n\t    7f6b2d55a664 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey (/tmp/perf-23895.map)\n\t    7f6b2d58f7f0 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized (/tmp/perf-23895.map)\n\t    7f6b2d5c324c Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\njava 23921 [001] 184694.229157: cycles: \n\t    7f6b2d0bad15 Lorg/mozilla/javascript/ScriptableObject;.createSlot (/tmp/perf-23895.map)\n\t    7f6b2d0904a8 Lorg/mozilla/javascript/ScriptableObject;.getSlot (/tmp/perf-23895.map)\n\t    7f6b2d0bdc1c Lorg/mozilla/javascript/IdScriptableObject;.put (/tmp/perf-23895.map)\n\t    7f6b2d0ca488 Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp (/tmp/perf-23895.map)\n\t    7f6b2d5831dc Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90;._c_anonymous_3 (/tmp/perf-23895.map)\n\t    7f6b2d41cac0 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90;.call (/tmp/perf-23895.map)\n\t    7f6b2d2f4068 Lorg/mozilla/javascript/BaseFunction;.construct (/tmp/perf-23895.map)\n\t    7f6b2d41d15c Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90;.call (/tmp/perf-23895.map)\n\t    7f6b2d41c9c4 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90;.call (/tmp/perf-23895.map)\n\t    7f6b2d329434 Lorg/vertx/java/core/http/impl/ServerConnection;.handleMessage (/tmp/perf-23895.map)\n\t    7f6b2d350a70 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived (/tmp/perf-23895.map)\n\t    7f6b2d325fac Lorg/vertx/java/core/http/impl/VertxHttpHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d341798 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d41812c Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d558468 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read (/tmp/perf-23895.map)\n\t    7f6b2d55a664 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey (/tmp/perf-23895.map)\n\t    7f6b2d58f7f0 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized (/tmp/perf-23895.map)\n\t    7f6b2d5c324c Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\nperf 23929 [002] 184694.229184: cycles: \n\tffffffff81729600 page_fault ([kernel.kallsyms])\n\t          415c96 [unknown] (/usr/lib/linux-tools-3.13.0-44/perf)\n\t          4081a5 [unknown] (/usr/lib/linux-tools-3.13.0-44/perf)\n\t          407a40 [unknown] (/usr/lib/linux-tools-3.13.0-44/perf)\n\t    7f2ccb956ec5 __libc_start_main (/lib/x86_64-linux-gnu/libc-2.19.so)\n\njava 23923 [003] 184694.229188: cycles: \n\t    7f6b2d0902c7 Lorg/mozilla/javascript/ScriptableObject;.getSlot (/tmp/perf-23895.map)\n\t    7f6b2d0ca4f4 Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp (/tmp/perf-23895.map)\n\t    7f6b2d5614a8 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_47;.call (/tmp/perf-23895.map)\n\t    7f6b2d21679c Lorg/mozilla/javascript/optimizer/OptRuntime;.call2 (/tmp/perf-23895.map)\n\t    7f6b2d595ee4 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;._c_anonymous_3 (/tmp/perf-23895.map)\n\t    7f6b2d4bbef8 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.call (/tmp/perf-23895.map)\n\t    7f6b2d2f4068 Lorg/mozilla/javascript/BaseFunction;.construct (/tmp/perf-23895.map)\n\t    7f6b2d4bc4bc Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.call (/tmp/perf-23895.map)\n\t    7f6b2d4bbdfc Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.call (/tmp/perf-23895.map)\n\t    7f6b2d329434 Lorg/vertx/java/core/http/impl/ServerConnection;.handleMessage (/tmp/perf-23895.map)\n\t    7f6b2d350a70 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived (/tmp/perf-23895.map)\n\t    7f6b2d325fac Lorg/vertx/java/core/http/impl/VertxHttpHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d341798 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d41812c Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d558468 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read (/tmp/perf-23895.map)\n\t    7f6b2d55a664 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey (/tmp/perf-23895.map)\n\t    7f6b2d58f7f0 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized (/tmp/perf-23895.map)\n\t    7f6b2d5c324c Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\njava 23923 [000] 184694.243059: cycles: \n\t    7f6b2d416e87 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.getParamCount (/tmp/perf-23895.map)\n\t    7f6b2d5946dc Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;._c_anonymous_3 (/tmp/perf-23895.map)\n\t    7f6b2d4bbef8 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.call (/tmp/perf-23895.map)\n\t    7f6b2d2f4068 Lorg/mozilla/javascript/BaseFunction;.construct (/tmp/perf-23895.map)\n\t    7f6b2d4bc4bc Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.call (/tmp/perf-23895.map)\n\t    7f6b2d4bbdfc Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.call (/tmp/perf-23895.map)\n\t    7f6b2d329434 Lorg/vertx/java/core/http/impl/ServerConnection;.handleMessage (/tmp/perf-23895.map)\n\t    7f6b2d350a70 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived (/tmp/perf-23895.map)\n\t    7f6b2d325fac Lorg/vertx/java/core/http/impl/VertxHttpHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d341798 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d41812c Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d558468 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read (/tmp/perf-23895.map)\n\t    7f6b2d55a664 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey (/tmp/perf-23895.map)\n\t    7f6b2d58f7f0 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized (/tmp/perf-23895.map)\n\t    7f6b2d5c324c Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\njava 23921 [001] 184694.246484: cycles: \n\t    7f6b2d3d11b0 Lio/netty/handler/codec/http/HttpMethod;.valueOf (/tmp/perf-23895.map)\n\t    7f6b2d3ffe24 Lio/netty/handler/codec/http/HttpObjectDecoder;.decode (/tmp/perf-23895.map)\n\t    7f6b2d417fd0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d558468 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read (/tmp/perf-23895.map)\n\t    7f6b2d55a664 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey (/tmp/perf-23895.map)\n\t    7f6b2d58f7f0 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized (/tmp/perf-23895.map)\n\t    7f6b2d5c324c Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\njava 23922 [003] 184694.246867: cycles: \n\t    7f6b2d0bad52 Lorg/mozilla/javascript/ScriptableObject;.createSlot (/tmp/perf-23895.map)\n\t    7f6b2d0904a8 Lorg/mozilla/javascript/ScriptableObject;.getSlot (/tmp/perf-23895.map)\n\t    7f6b2d0bdc1c Lorg/mozilla/javascript/IdScriptableObject;.put (/tmp/perf-23895.map)\n\t    7f6b2d0ca488 Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp (/tmp/perf-23895.map)\n\t    7f6b2d5b3fdc Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91;._c_anonymous_3 (/tmp/perf-23895.map)\n\t    7f6b2d493078 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91;.call (/tmp/perf-23895.map)\n\t    7f6b2d2f4068 Lorg/mozilla/javascript/BaseFunction;.construct (/tmp/perf-23895.map)\n\t    7f6b2d49363c Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91;.call (/tmp/perf-23895.map)\n\t    7f6b2d492f7c Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91;.call (/tmp/perf-23895.map)\n\t    7f6b2d329434 Lorg/vertx/java/core/http/impl/ServerConnection;.handleMessage (/tmp/perf-23895.map)\n\t    7f6b2d350a70 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived (/tmp/perf-23895.map)\n\t    7f6b2d325fac Lorg/vertx/java/core/http/impl/VertxHttpHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d341798 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d41812c Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d558468 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read (/tmp/perf-23895.map)\n\t    7f6b2d55a664 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey (/tmp/perf-23895.map)\n\t    7f6b2d58f7f0 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized (/tmp/perf-23895.map)\n\t    7f6b2d5c324c Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\njava 23921 [002] 184694.255900: cycles: \n\t    7f6b2d54ff29 Lsun/nio/ch/SocketChannelImpl;.read (/tmp/perf-23895.map)\n\t    7f6b2d519374 Lio/netty/buffer/AbstractByteBuf;.writeBytes (/tmp/perf-23895.map)\n\t    7f6b2d55840c Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read (/tmp/perf-23895.map)\n\t    7f6b2d55a664 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey (/tmp/perf-23895.map)\n\t    7f6b2d58f7f0 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized (/tmp/perf-23895.map)\n\t    7f6b2d5c324c Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\njava 23920 [000] 184694.356511: cycles: \n\t    7f6b2d329439 Lorg/vertx/java/core/http/impl/ServerConnection;.handleMessage (/tmp/perf-23895.map)\n\t    7f6b2d350a70 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived (/tmp/perf-23895.map)\n\t    7f6b2d325fac Lorg/vertx/java/core/http/impl/VertxHttpHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d341798 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d41812c Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d558468 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read (/tmp/perf-23895.map)\n\t    7f6b2d55a664 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey (/tmp/perf-23895.map)\n\t    7f6b2d58f7f0 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized (/tmp/perf-23895.map)\n\t    7f6b2d5c324c Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\njava 23922 [003] 184694.363320: cycles: \n\t    7f6b2d0d5c53 Ljava/lang/Thread;.blockedOn (/tmp/perf-23895.map)\n\t    7f6b2d550194 Lsun/nio/ch/SocketChannelImpl;.read (/tmp/perf-23895.map)\n\t    7f6b2d519374 Lio/netty/buffer/AbstractByteBuf;.writeBytes (/tmp/perf-23895.map)\n\t    7f6b2d55840c Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read (/tmp/perf-23895.map)\n\t    7f6b2d55a664 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey (/tmp/perf-23895.map)\n\t    7f6b2d58f7f0 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized (/tmp/perf-23895.map)\n\t    7f6b2d5c324c Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\njava 23921 [001] 184694.365722: cycles: \n\t    7f6b2d1f22c2 Lorg/mozilla/javascript/ScriptRuntime;.getPropFunctionAndThis (/tmp/perf-23895.map)\n\t    7f6b2d5838ec Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90;._c_anonymous_3 (/tmp/perf-23895.map)\n\t    7f6b2d41cac0 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90;.call (/tmp/perf-23895.map)\n\t    7f6b2d2f4068 Lorg/mozilla/javascript/BaseFunction;.construct (/tmp/perf-23895.map)\n\t    7f6b2d41d15c Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90;.call (/tmp/perf-23895.map)\n\t    7f6b2d41c9c4 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90;.call (/tmp/perf-23895.map)\n\t    7f6b2d329434 Lorg/vertx/java/core/http/impl/ServerConnection;.handleMessage (/tmp/perf-23895.map)\n\t    7f6b2d350a70 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived (/tmp/perf-23895.map)\n\t    7f6b2d325fac Lorg/vertx/java/core/http/impl/VertxHttpHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d341798 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d41812c Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d558468 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read (/tmp/perf-23895.map)\n\t    7f6b2d55a664 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey (/tmp/perf-23895.map)\n\t    7f6b2d58f7f0 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized (/tmp/perf-23895.map)\n\t    7f6b2d5c324c Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\njava 23920 [002] 184694.366480: cycles: \n\t    7f6b2d0a4908 Lorg/mozilla/javascript/IdScriptableObject;.has (/tmp/perf-23895.map)\n\t    7f6b2d0ca4f4 Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp (/tmp/perf-23895.map)\n\t    7f6b2d536bb4 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_31;.call (/tmp/perf-23895.map)\n\t    7f6b2d21679c Lorg/mozilla/javascript/optimizer/OptRuntime;.call2 (/tmp/perf-23895.map)\n\t    7f6b2d5a7658 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80;._c_anonymous_21 (/tmp/perf-23895.map)\n\t    7f6b2d3d4158 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80;.call (/tmp/perf-23895.map)\n\t    7f6b2d2f4068 Lorg/mozilla/javascript/BaseFunction;.construct (/tmp/perf-23895.map)\n\t    7f6b2d59d6a0 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80;._c_anonymous_3 (/tmp/perf-23895.map)\n\t    7f6b2d3d4080 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80;.call (/tmp/perf-23895.map)\n\t    7f6b2d2f4068 Lorg/mozilla/javascript/BaseFunction;.construct (/tmp/perf-23895.map)\n\t    7f6b2d3d472c Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80;.call (/tmp/perf-23895.map)\n\t    7f6b2d3d3f84 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80;.call (/tmp/perf-23895.map)\n\t    7f6b2d329434 Lorg/vertx/java/core/http/impl/ServerConnection;.handleMessage (/tmp/perf-23895.map)\n\t    7f6b2d350a70 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived (/tmp/perf-23895.map)\n\t    7f6b2d325fac Lorg/vertx/java/core/http/impl/VertxHttpHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d341798 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d41812c Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d558468 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read (/tmp/perf-23895.map)\n\t    7f6b2d55a664 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey (/tmp/perf-23895.map)\n\t    7f6b2d58f7f0 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized (/tmp/perf-23895.map)\n\t    7f6b2d5c324c Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\njava 23922 [000] 184694.378688: cycles: \n\t    7f6b2d0a4bcc Lorg/mozilla/javascript/IdScriptableObject;.has (/tmp/perf-23895.map)\n\t    7f6b2d0ca4f4 Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp (/tmp/perf-23895.map)\n\t    7f6b2d5b469c Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91;._c_anonymous_3 (/tmp/perf-23895.map)\n\t    7f6b2d493078 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91;.call (/tmp/perf-23895.map)\n\t    7f6b2d2f4068 Lorg/mozilla/javascript/BaseFunction;.construct (/tmp/perf-23895.map)\n\t    7f6b2d49363c Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91;.call (/tmp/perf-23895.map)\n\t    7f6b2d492f7c Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91;.call (/tmp/perf-23895.map)\n\t    7f6b2d329434 Lorg/vertx/java/core/http/impl/ServerConnection;.handleMessage (/tmp/perf-23895.map)\n\t    7f6b2d350a70 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived (/tmp/perf-23895.map)\n\t    7f6b2d325fac Lorg/vertx/java/core/http/impl/VertxHttpHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d341798 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d41812c Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d558468 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read (/tmp/perf-23895.map)\n\t    7f6b2d55a664 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey (/tmp/perf-23895.map)\n\t    7f6b2d58f7f0 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized (/tmp/perf-23895.map)\n\t    7f6b2d5c324c Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\nab 23927 [003] 184694.382687: cycles: \n\tffffffff81616449 __kfree_skb ([kernel.kallsyms])\n\tffffffff81672c6a tcp_clean_rtx_queue ([kernel.kallsyms])\n\tffffffff816739e8 tcp_ack ([kernel.kallsyms])\n\tffffffff816741b2 tcp_rcv_established ([kernel.kallsyms])\n\tffffffff8167e105 tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81680510 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff8165b268 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff8165b568 ip_local_deliver ([kernel.kallsyms])\n\tffffffff8165aeed ip_rcv_finish ([kernel.kallsyms])\n\tffffffff8165b838 ip_rcv ([kernel.kallsyms])\n\tffffffff81625056 __netif_receive_skb_core ([kernel.kallsyms])\n\tffffffff81625248 __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81625dde process_backlog ([kernel.kallsyms])\n\tffffffff81625632 net_rx_action ([kernel.kallsyms])\n\tffffffff8106cc1c __do_softirq ([kernel.kallsyms])\n\tffffffff8173329c do_softirq_own_stack ([kernel.kallsyms])\n\tffffffff8106ce95 do_softirq ([kernel.kallsyms])\n\tffffffff8106cf24 local_bh_enable ([kernel.kallsyms])\n\tffffffff8165f8c8 ip_finish_output ([kernel.kallsyms])\n\tffffffff81660e28 ip_output ([kernel.kallsyms])\n\tffffffff81660585 ip_local_out ([kernel.kallsyms])\n\tffffffff816608ea ip_queue_xmit ([kernel.kallsyms])\n\tffffffff816776a9 tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81677c50 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff8167888e __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81669ec8 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff816937b4 inet_sendmsg ([kernel.kallsyms])\n\tffffffff8160b55e sock_aio_write ([kernel.kallsyms])\n\tffffffff811bd4aa do_sync_write ([kernel.kallsyms])\n\tffffffff811bdd2d vfs_write ([kernel.kallsyms])\n\tffffffff811be669 sys_write ([kernel.kallsyms])\n\tffffffff8173186d system_call_fastpath ([kernel.kallsyms])\n\t    7f26dc479340 __write_nocancel (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f26cabd51d0 [unknown] ([unknown])\n\njava 23921 [002] 184694.383958: cycles: \n\t    7f6b2d0904b8 Lorg/mozilla/javascript/ScriptableObject;.getSlot (/tmp/perf-23895.map)\n\t    7f6b2d0c48ac Lorg/mozilla/javascript/IdScriptableObject;.get (/tmp/perf-23895.map)\n\t    7f6b2d0cd4fc Lorg/mozilla/javascript/ScriptRuntime;.nameOrFunction (/tmp/perf-23895.map)\n\t    7f6b2d583528 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90;._c_anonymous_3 (/tmp/perf-23895.map)\n\t    7f6b2d41cac0 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90;.call (/tmp/perf-23895.map)\n\t    7f6b2d2f4068 Lorg/mozilla/javascript/BaseFunction;.construct (/tmp/perf-23895.map)\n\t    7f6b2d41d15c Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90;.call (/tmp/perf-23895.map)\n\t    7f6b2d41c9c4 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90;.call (/tmp/perf-23895.map)\n\t    7f6b2d329434 Lorg/vertx/java/core/http/impl/ServerConnection;.handleMessage (/tmp/perf-23895.map)\n\t    7f6b2d350a70 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived (/tmp/perf-23895.map)\n\t    7f6b2d325fac Lorg/vertx/java/core/http/impl/VertxHttpHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d341798 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d41812c Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d558468 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read (/tmp/perf-23895.map)\n\t    7f6b2d55a664 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey (/tmp/perf-23895.map)\n\t    7f6b2d58f7f0 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized (/tmp/perf-23895.map)\n\t    7f6b2d5c324c Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\njava 23923 [001] 184694.384113: cycles: \n\t    7f6b2d4bc341 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.call (/tmp/perf-23895.map)\n\t    7f6b2d4bbdfc Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.call (/tmp/perf-23895.map)\n\t    7f6b2d329434 Lorg/vertx/java/core/http/impl/ServerConnection;.handleMessage (/tmp/perf-23895.map)\n\t    7f6b2d350a70 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived (/tmp/perf-23895.map)\n\t    7f6b2d325fac Lorg/vertx/java/core/http/impl/VertxHttpHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d341798 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d41812c Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d558468 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read (/tmp/perf-23895.map)\n\t    7f6b2d55a664 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey (/tmp/perf-23895.map)\n\t    7f6b2d58f7f0 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized (/tmp/perf-23895.map)\n\t    7f6b2d5c324c Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\njava 23922 [000] 184694.394803: cycles: \n\tffffffff8167edee __tcp_v4_send_check ([kernel.kallsyms])\n\tffffffff8167ee3c tcp_v4_send_check ([kernel.kallsyms])\n\tffffffff816775b5 tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81677c50 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff8167888e __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81669ec8 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff816937b4 inet_sendmsg ([kernel.kallsyms])\n\tffffffff8160b55e sock_aio_write ([kernel.kallsyms])\n\tffffffff811bd4aa do_sync_write ([kernel.kallsyms])\n\tffffffff811bdd2d vfs_write ([kernel.kallsyms])\n\tffffffff811be669 sys_write ([kernel.kallsyms])\n\tffffffff8173186d system_call_fastpath ([kernel.kallsyms])\n\t    7f6b42bfc35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f6b2d2eb14b Lsun/nio/ch/FileDispatcherImpl;.write0 (/tmp/perf-23895.map)\n\t    7f6b2d3dee80 Lsun/nio/ch/SocketChannelImpl;.write (/tmp/perf-23895.map)\n\t    7f6b2d3d1e74 Lio/netty/buffer/PooledUnsafeDirectByteBuf;.getBytes (/tmp/perf-23895.map)\n\t    7f6b2d4d1e0c Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite (/tmp/perf-23895.map)\n\t    7f6b2d3cac1c Lio/netty/channel/DefaultChannelPipeline$HeadHandler;.flush (/tmp/perf-23895.map)\n\t    7f6b2d1b2534 Lio/netty/channel/DefaultChannelHandlerContext;.flush (/tmp/perf-23895.map)\n\t    7f6b2d3d0224 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush (/tmp/perf-23895.map)\n\t    7f6b2d1b2534 Lio/netty/channel/DefaultChannelHandlerContext;.flush (/tmp/perf-23895.map)\n\t    7f6b2d3c40e4 Lio/netty/channel/ChannelDuplexHandler;.flush (/tmp/perf-23895.map)\n\t    7f6b2d1b2534 Lio/netty/channel/DefaultChannelHandlerContext;.flush (/tmp/perf-23895.map)\n\t    7f6b2d3c8ba8 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete (/tmp/perf-23895.map)\n\t    7f6b2d25fb34 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelReadComplete (/tmp/perf-23895.map)\n\t    7f6b2d3ebe58 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete (/tmp/perf-23895.map)\n\t    7f6b2d25fb34 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelReadComplete (/tmp/perf-23895.map)\n\t    7f6b2d5584c4 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read (/tmp/perf-23895.map)\n\t    7f6b2d55a664 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey (/tmp/perf-23895.map)\n\t    7f6b2d58f7f0 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized (/tmp/perf-23895.map)\n\t    7f6b2d5c324c Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\nab 23927 [003] 184694.397164: cycles: \n\tffffffff8161517e __kmalloc_reserve.isra.26 ([kernel.kallsyms])\n\tffffffff81615b1e __alloc_skb ([kernel.kallsyms])\n\tffffffff81669609 sk_stream_alloc_skb ([kernel.kallsyms])\n\tffffffff8166a57b tcp_sendmsg ([kernel.kallsyms])\n\tffffffff816937b4 inet_sendmsg ([kernel.kallsyms])\n\tffffffff8160b55e sock_aio_write ([kernel.kallsyms])\n\tffffffff811bd4aa do_sync_write ([kernel.kallsyms])\n\tffffffff811bdd2d vfs_write ([kernel.kallsyms])\n\tffffffff811be669 sys_write ([kernel.kallsyms])\n\tffffffff8173186d system_call_fastpath ([kernel.kallsyms])\n\t    7f26dc479340 __write_nocancel (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f26cabe2590 [unknown] ([unknown])\n\njava 23921 [002] 184694.398792: cycles: \n\t    7f6b2d2fd3e4 Ljava/lang/reflect/Method;.invoke (/tmp/perf-23895.map)\n\t    7f6b2d3094bc Lorg/mozilla/javascript/MemberBox;.invoke (/tmp/perf-23895.map)\n\t    7f6b2d4078bc Lorg/mozilla/javascript/NativeJavaMethod;.call (/tmp/perf-23895.map)\n\t    7f6b2d41cecc Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90;.call (/tmp/perf-23895.map)\n\t    7f6b2d57d43c Lorg/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_4;._c_anonymous_1 (/tmp/perf-23895.map)\n\t    7f6b2d56e75c Lorg/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_4;.call (/tmp/perf-23895.map)\n\t    7f6b2d41d234 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90;.call (/tmp/perf-23895.map)\n\t    7f6b2d41c9c4 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90;.call (/tmp/perf-23895.map)\n\t    7f6b2d329434 Lorg/vertx/java/core/http/impl/ServerConnection;.handleMessage (/tmp/perf-23895.map)\n\t    7f6b2d350a70 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived (/tmp/perf-23895.map)\n\t    7f6b2d325fac Lorg/vertx/java/core/http/impl/VertxHttpHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d341798 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d41812c Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d558468 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read (/tmp/perf-23895.map)\n\t    7f6b2d55a664 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey (/tmp/perf-23895.map)\n\t    7f6b2d58f7f0 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized (/tmp/perf-23895.map)\n\t    7f6b2d5c324c Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\njava 23923 [001] 184694.399637: cycles: \n\t    7f6b42bf6900 pthread_self (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f6b2d3deddc Lsun/nio/ch/SocketChannelImpl;.write (/tmp/perf-23895.map)\n\t    7f6b2d3d1e74 Lio/netty/buffer/PooledUnsafeDirectByteBuf;.getBytes (/tmp/perf-23895.map)\n\t    7f6b2d4d1e0c Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite (/tmp/perf-23895.map)\n\t    7f6b2d3cac1c Lio/netty/channel/DefaultChannelPipeline$HeadHandler;.flush (/tmp/perf-23895.map)\n\t    7f6b2d1b2534 Lio/netty/channel/DefaultChannelHandlerContext;.flush (/tmp/perf-23895.map)\n\t    7f6b2d3d0224 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush (/tmp/perf-23895.map)\n\t    7f6b2d1b2534 Lio/netty/channel/DefaultChannelHandlerContext;.flush (/tmp/perf-23895.map)\n\t    7f6b2d3c40e4 Lio/netty/channel/ChannelDuplexHandler;.flush (/tmp/perf-23895.map)\n\t    7f6b2d1b2534 Lio/netty/channel/DefaultChannelHandlerContext;.flush (/tmp/perf-23895.map)\n\t    7f6b2d3c8ba8 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete (/tmp/perf-23895.map)\n\t    7f6b2d25fb34 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelReadComplete (/tmp/perf-23895.map)\n\t    7f6b2d3ebe58 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete (/tmp/perf-23895.map)\n\t    7f6b2d25fb34 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelReadComplete (/tmp/perf-23895.map)\n\t    7f6b2d5584c4 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read (/tmp/perf-23895.map)\n\t    7f6b2d55a664 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey (/tmp/perf-23895.map)\n\t    7f6b2d58f7f0 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized (/tmp/perf-23895.map)\n\t    7f6b2d5c324c Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\njava 23922 [000] 184694.408782: cycles: \n\t    7f6b2d20a8d3 Lio/netty/handler/codec/http/DefaultHttpHeaders;.add0 (/tmp/perf-23895.map)\n\t    7f6b2d2fdccc Ljava/lang/reflect/Method;.invoke (/tmp/perf-23895.map)\n\t    7f6b2d3094bc Lorg/mozilla/javascript/MemberBox;.invoke (/tmp/perf-23895.map)\n\t    7f6b2d4078bc Lorg/mozilla/javascript/NativeJavaMethod;.call (/tmp/perf-23895.map)\n\t    7f6b2d4933ac Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91;.call (/tmp/perf-23895.map)\n\t    7f6b2d57f17c Lorg/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_2;.call (/tmp/perf-23895.map)\n\t    7f6b2d493714 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91;.call (/tmp/perf-23895.map)\n\t    7f6b2d492f7c Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91;.call (/tmp/perf-23895.map)\n\t    7f6b2d329434 Lorg/vertx/java/core/http/impl/ServerConnection;.handleMessage (/tmp/perf-23895.map)\n\t    7f6b2d350a70 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived (/tmp/perf-23895.map)\n\t    7f6b2d325fac Lorg/vertx/java/core/http/impl/VertxHttpHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d341798 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d41812c Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d558468 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read (/tmp/perf-23895.map)\n\t    7f6b2d55a664 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey (/tmp/perf-23895.map)\n\t    7f6b2d58f7f0 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized (/tmp/perf-23895.map)\n\t    7f6b2d5c324c Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\njava 23921 [002] 184694.412007: cycles: \n\tffffffff81728c21 _raw_spin_unlock_irqrestore ([kernel.kallsyms])\n\tffffffff8109a88a try_to_wake_up ([kernel.kallsyms])\n\tffffffff8109a9c2 default_wake_function ([kernel.kallsyms])\n\tffffffff810aa9c8 __wake_up_common ([kernel.kallsyms])\n\tffffffff810aaa13 __wake_up_locked ([kernel.kallsyms])\n\tffffffff812064b8 ep_poll_callback ([kernel.kallsyms])\n\tffffffff810aa9c8 __wake_up_common ([kernel.kallsyms])\n\tffffffff810aaf75 __wake_up_sync_key ([kernel.kallsyms])\n\tffffffff8160efca sock_def_readable ([kernel.kallsyms])\n\tffffffff81671217 tcp_data_queue ([kernel.kallsyms])\n\tffffffff816741f4 tcp_rcv_established ([kernel.kallsyms])\n\tffffffff8167e105 tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81680510 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff8165b268 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff8165b568 ip_local_deliver ([kernel.kallsyms])\n\tffffffff8165aeed ip_rcv_finish ([kernel.kallsyms])\n\tffffffff8165b838 ip_rcv ([kernel.kallsyms])\n\tffffffff81625056 __netif_receive_skb_core ([kernel.kallsyms])\n\tffffffff81625248 __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81625dde process_backlog ([kernel.kallsyms])\n\tffffffff81625632 net_rx_action ([kernel.kallsyms])\n\tffffffff8106cc1c __do_softirq ([kernel.kallsyms])\n\tffffffff8173329c do_softirq_own_stack ([kernel.kallsyms])\n\tffffffff8106ce95 do_softirq ([kernel.kallsyms])\n\tffffffff8106cf24 local_bh_enable ([kernel.kallsyms])\n\tffffffff8165f8c8 ip_finish_output ([kernel.kallsyms])\n\tffffffff81660e28 ip_output ([kernel.kallsyms])\n\tffffffff81660585 ip_local_out ([kernel.kallsyms])\n\tffffffff816608ea ip_queue_xmit ([kernel.kallsyms])\n\tffffffff816776a9 tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81677c50 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff8167888e __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81669ec8 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff816937b4 inet_sendmsg ([kernel.kallsyms])\n\tffffffff8160b55e sock_aio_write ([kernel.kallsyms])\n\tffffffff811bd4aa do_sync_write ([kernel.kallsyms])\n\tffffffff811bdd2d vfs_write ([kernel.kallsyms])\n\tffffffff811be669 sys_write ([kernel.kallsyms])\n\tffffffff8173186d system_call_fastpath ([kernel.kallsyms])\n\t    7f6b42bfc35d [unknown] (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f6b2d2eb14b Lsun/nio/ch/FileDispatcherImpl;.write0 (/tmp/perf-23895.map)\n\t    7f6b2d3dee80 Lsun/nio/ch/SocketChannelImpl;.write (/tmp/perf-23895.map)\n\t    7f6b2d3d1e74 Lio/netty/buffer/PooledUnsafeDirectByteBuf;.getBytes (/tmp/perf-23895.map)\n\t    7f6b2d4d1e0c Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite (/tmp/perf-23895.map)\n\t    7f6b2d3cac1c Lio/netty/channel/DefaultChannelPipeline$HeadHandler;.flush (/tmp/perf-23895.map)\n\t    7f6b2d1b2534 Lio/netty/channel/DefaultChannelHandlerContext;.flush (/tmp/perf-23895.map)\n\t    7f6b2d3d0224 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush (/tmp/perf-23895.map)\n\t    7f6b2d1b2534 Lio/netty/channel/DefaultChannelHandlerContext;.flush (/tmp/perf-23895.map)\n\t    7f6b2d3c40e4 Lio/netty/channel/ChannelDuplexHandler;.flush (/tmp/perf-23895.map)\n\t    7f6b2d1b2534 Lio/netty/channel/DefaultChannelHandlerContext;.flush (/tmp/perf-23895.map)\n\t    7f6b2d3c8ba8 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete (/tmp/perf-23895.map)\n\t    7f6b2d25fb34 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelReadComplete (/tmp/perf-23895.map)\n\t    7f6b2d3ebe58 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete (/tmp/perf-23895.map)\n\t    7f6b2d25fb34 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelReadComplete (/tmp/perf-23895.map)\n\t    7f6b2d5584c4 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read (/tmp/perf-23895.map)\n\t    7f6b2d55a664 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey (/tmp/perf-23895.map)\n\t    7f6b2d58f7f0 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized (/tmp/perf-23895.map)\n\t    7f6b2d5c324c Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\njava 23923 [001] 184694.413293: cycles: \n\t    7f6b2d090407 Lorg/mozilla/javascript/ScriptableObject;.getSlot (/tmp/perf-23895.map)\n\t    7f6b2d0a4908 Lorg/mozilla/javascript/IdScriptableObject;.has (/tmp/perf-23895.map)\n\t    7f6b2d0ca4f4 Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp (/tmp/perf-23895.map)\n\t    7f6b2d5952dc Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;._c_anonymous_3 (/tmp/perf-23895.map)\n\t    7f6b2d4bbef8 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.call (/tmp/perf-23895.map)\n\t    7f6b2d2f4068 Lorg/mozilla/javascript/BaseFunction;.construct (/tmp/perf-23895.map)\n\t    7f6b2d4bc4bc Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.call (/tmp/perf-23895.map)\n\t    7f6b2d4bbdfc Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.call (/tmp/perf-23895.map)\n\t    7f6b2d329434 Lorg/vertx/java/core/http/impl/ServerConnection;.handleMessage (/tmp/perf-23895.map)\n\t    7f6b2d350a70 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived (/tmp/perf-23895.map)\n\t    7f6b2d325fac Lorg/vertx/java/core/http/impl/VertxHttpHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d341798 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d41812c Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d558468 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read (/tmp/perf-23895.map)\n\t    7f6b2d55a664 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey (/tmp/perf-23895.map)\n\t    7f6b2d58f7f0 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized (/tmp/perf-23895.map)\n\t    7f6b2d5c324c Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\nab 23927 [003] 184694.413444: cycles: \n\tffffffff8167b9f0 tcp_v4_md5_lookup ([kernel.kallsyms])\n\tffffffff81676d54 tcp_current_mss ([kernel.kallsyms])\n\tffffffff816680ac tcp_send_mss ([kernel.kallsyms])\n\tffffffff81669f09 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff816937b4 inet_sendmsg ([kernel.kallsyms])\n\tffffffff8160b55e sock_aio_write ([kernel.kallsyms])\n\tffffffff811bd4aa do_sync_write ([kernel.kallsyms])\n\tffffffff811bdd2d vfs_write ([kernel.kallsyms])\n\tffffffff811be669 sys_write ([kernel.kallsyms])\n\tffffffff8173186d system_call_fastpath ([kernel.kallsyms])\n\t    7f26dc479340 __write_nocancel (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\t    7f26cabf0e30 [unknown] ([unknown])\n\njava 23922 [000] 184694.420880: cycles: \n\t    7f6b2d0902c0 Lorg/mozilla/javascript/ScriptableObject;.getSlot (/tmp/perf-23895.map)\n\t    7f6b2d0ca428 Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp (/tmp/perf-23895.map)\n\t    7f6b2d552aac Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_49;.call (/tmp/perf-23895.map)\n\t    7f6b2d21679c Lorg/mozilla/javascript/optimizer/OptRuntime;.call2 (/tmp/perf-23895.map)\n\t    7f6b2d55305c Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_49;.call (/tmp/perf-23895.map)\n\t    7f6b2d21679c Lorg/mozilla/javascript/optimizer/OptRuntime;.call2 (/tmp/perf-23895.map)\n\t    7f6b2d5ab698 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91;._c_anonymous_21 (/tmp/perf-23895.map)\n\t    7f6b2d493150 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91;.call (/tmp/perf-23895.map)\n\t    7f6b2d2f4068 Lorg/mozilla/javascript/BaseFunction;.construct (/tmp/perf-23895.map)\n\t    7f6b2d5b4be0 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91;._c_anonymous_3 (/tmp/perf-23895.map)\n\t    7f6b2d493078 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91;.call (/tmp/perf-23895.map)\n\t    7f6b2d2f4068 Lorg/mozilla/javascript/BaseFunction;.construct (/tmp/perf-23895.map)\n\t    7f6b2d49363c Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91;.call (/tmp/perf-23895.map)\n\t    7f6b2d492f7c Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91;.call (/tmp/perf-23895.map)\n\t    7f6b2d329434 Lorg/vertx/java/core/http/impl/ServerConnection;.handleMessage (/tmp/perf-23895.map)\n\t    7f6b2d350a70 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived (/tmp/perf-23895.map)\n\t    7f6b2d325fac Lorg/vertx/java/core/http/impl/VertxHttpHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d341798 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d41812c Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d558468 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read (/tmp/perf-23895.map)\n\t    7f6b2d55a664 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey (/tmp/perf-23895.map)\n\t    7f6b2d58f7f0 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized (/tmp/perf-23895.map)\n\t    7f6b2d5c324c Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\njava 23921 [002] 184694.423471: cycles: \n\t    7f6b42515d08 __libc_enable_asynccancel (/lib/x86_64-linux-gnu/libc-2.19.so)\n\t    7f6b2d3de7f2 Lsun/nio/ch/EPollArrayWrapper;.epollWait (/tmp/perf-23895.map)\n\t    7f6b2d591320 Lsun/nio/ch/EPollArrayWrapper;.poll (/tmp/perf-23895.map)\n\t    7f6b2d5a4120 Lsun/nio/ch/EPollSelectorImpl;.doSelect (/tmp/perf-23895.map)\n\t    7f6b2d58a348 Lsun/nio/ch/SelectorImpl;.lockAndDoSelect (/tmp/perf-23895.map)\n\t    7f6b2d5c1420 Lio/netty/channel/nio/NioEventLoop;.select (/tmp/perf-23895.map)\n\t    7f6b2d5c2b44 Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\njava 23922 [001] 184694.425117: cycles: \n\t    7f6b2d25e374 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d41812c Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d558468 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read (/tmp/perf-23895.map)\n\t    7f6b2d55a664 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey (/tmp/perf-23895.map)\n\t    7f6b2d58f7f0 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized (/tmp/perf-23895.map)\n\t    7f6b2d5c324c Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\njava 23923 [003] 184694.427558: cycles: \n\t    7f6b2d13647c Lio/netty/handler/codec/http/HttpObjectDecoder;.findWhitespace (/tmp/perf-23895.map)\n\t    7f6b2d3ffb20 Lio/netty/handler/codec/http/HttpObjectDecoder;.decode (/tmp/perf-23895.map)\n\t    7f6b2d417fd0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d558468 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read (/tmp/perf-23895.map)\n\t    7f6b2d55a664 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey (/tmp/perf-23895.map)\n\t    7f6b2d58f7f0 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized (/tmp/perf-23895.map)\n\t    7f6b2d5c324c Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\njava 23923 [000] 184694.432846: cycles: \n\t    7f6b2d40f900 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.getParamAndVarCount (/tmp/perf-23895.map)\n\t    7f6b2d5af318 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;._c_anonymous_21 (/tmp/perf-23895.map)\n\t    7f6b2d4bbfd0 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.call (/tmp/perf-23895.map)\n\t    7f6b2d2f4068 Lorg/mozilla/javascript/BaseFunction;.construct (/tmp/perf-23895.map)\n\t    7f6b2d595ca0 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;._c_anonymous_3 (/tmp/perf-23895.map)\n\t    7f6b2d4bbef8 Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.call (/tmp/perf-23895.map)\n\t    7f6b2d2f4068 Lorg/mozilla/javascript/BaseFunction;.construct (/tmp/perf-23895.map)\n\t    7f6b2d4bc4bc Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.call (/tmp/perf-23895.map)\n\t    7f6b2d4bbdfc Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93;.call (/tmp/perf-23895.map)\n\t    7f6b2d329434 Lorg/vertx/java/core/http/impl/ServerConnection;.handleMessage (/tmp/perf-23895.map)\n\t    7f6b2d350a70 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived (/tmp/perf-23895.map)\n\t    7f6b2d325fac Lorg/vertx/java/core/http/impl/VertxHttpHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d341798 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d41812c Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead (/tmp/perf-23895.map)\n\t    7f6b2d25e364 Lio/netty/channel/DefaultChannelHandlerContext;.fireChannelRead (/tmp/perf-23895.map)\n\t    7f6b2d558468 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read (/tmp/perf-23895.map)\n\t    7f6b2d55a664 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey (/tmp/perf-23895.map)\n\t    7f6b2d58f7f0 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized (/tmp/perf-23895.map)\n\t    7f6b2d5c324c Lio/netty/channel/nio/NioEventLoop;.run (/tmp/perf-23895.map)\n\t    7f6b2cbe0c4d Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbe0c92 Interpreter (/tmp/perf-23895.map)\n\t    7f6b2cbd97a7 call_stub (/tmp/perf-23895.map)\n\t    7f6b41abe926 JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abee31 JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41abf2d7 JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41b56010 thread_entry(JavaThread*, Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9bdbf JavaThread::thread_main_inner() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41e9beec JavaThread::run() (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b41d4fb08 java_start(Thread*) (/usr/lib/jvm/jdk1.8.0_60_b19/jre/lib/amd64/server/libjvm.so)\n\t    7f6b42bf5182 start_thread (/lib/x86_64-linux-gnu/libpthread-2.19.so)\n\nab 23927 [002] 184694.435091: cycles: \n\tffffffff81724b08 __schedule ([kernel.kallsyms])\n\tffffffff817251a9 schedule ([kernel.kallsyms])\n\tffffffff817247ec schedule_hrtimeout_range_clock ([kernel.kallsyms])\n\tffffffff81724843 schedule_hrtimeout_range ([kernel.kallsyms])\n\tffffffff81206332 ep_poll ([kernel.kallsyms])\n\tffffffff81207575 sys_epoll_wait ([kernel.kallsyms])\n\tffffffff8173186d system_call_fastpath ([kernel.kallsyms])\n\t    7f26dc19f683 __epoll_wait_nocancel (/lib/x86_64-linux-gnu/libc-2.19.so)\n\t    7fffa95fe250 [unknown] ([vdso])\n\t   1000100000001 [unknown] ([unknown])\n"
  },
  {
    "path": "test/perf-java-stacks-02.txt",
    "content": "java 19983 cycles:\nffffffff8103d0ca native_write_msr_safe ([kernel.kallsyms])\nffffffff810275f1 intel_pmu_enable_all ([kernel.kallsyms])\nffffffff81028021 intel_pmu_nhm_enable_all ([kernel.kallsyms])\nffffffff81024282 x86_pmu_enable ([kernel.kallsyms])\nffffffff8110ea8b perf_pmu_enable ([kernel.kallsyms])\nffffffff81022966 x86_pmu_commit_txn ([kernel.kallsyms])\nffffffff8110fb2a group_sched_in ([kernel.kallsyms])\nffffffff811105ea __perf_event_enable ([kernel.kallsyms])\nffffffff8110b928 remote_function ([kernel.kallsyms])\nffffffff810a20e6 generic_smp_call_function_single_interrupt ([kernel.kallsyms])\nffffffff81030a57 smp_call_function_single_interrupt ([kernel.kallsyms])\nffffffff816647de call_function_single_interrupt ([kernel.kallsyms])\n7f7241fbe6d8 arrayOopDesc::base(BasicType) const (/home/xguan/opt/jdk1.8.0_112/jre/lib/amd64/server/libjvm.so)\n7f7241239aec writeBytes (/home/xguan/opt/jdk1.8.0_112/jre/lib/amd64/libjava.so)\n7f724123176f Java_java_io_FileOutputStream_writeBytes (/home/xguan/opt/jdk1.8.0_112/jre/lib/amd64/libjava.so)\n7f722d119786 Ljava/io/FileOutputStream;::writeBytes (/tmp/perf-19982.map)\n7f722d142778 Ljava/io/PrintStream;::print (/tmp/perf-19982.map)\n7f722d12e1d4 LBusy;::main (/tmp/perf-19982.map)\n7f722d0004e7 call_stub (/tmp/perf-19982.map)\n7f72421d2d76 JavaCalls::call_helper(JavaValue, methodHandle, JavaCallArguments, Thread) (/home/xguan/opt/jdk1.8.0_112/jre/lib/amd64/server/libjvm.so)\n7f72421ed566 jni_invoke_static(JNIEnv_, JavaValue, _jobject, JNICallType, _jmethodID, JNI_ArgumentPusher, Thread) (/home/xguan/opt/jdk1.8.0_112/jre/lib/amd64/server/libjvm.so)\n7f72421f987a jni_CallStaticVoidMethod (/home/xguan/opt/jdk1.8.0_112/jre/lib/amd64/server/libjvm.so)\n7f724309ebdf JavaMain (/home/xguan/opt/jdk1.8.0_112/lib/amd64/jli/libjli.so)\n7f72432b4e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava 19983 cycles:\nffffffff8103d0ca native_write_msr_safe ([kernel.kallsyms])\nffffffff810275f1 intel_pmu_enable_all ([kernel.kallsyms])\nffffffff81028021 intel_pmu_nhm_enable_all ([kernel.kallsyms])\nffffffff81024282 x86_pmu_enable ([kernel.kallsyms])\nffffffff8110ea8b perf_pmu_enable ([kernel.kallsyms])\nffffffff81022966 x86_pmu_commit_txn ([kernel.kallsyms])\nffffffff8110fb2a group_sched_in ([kernel.kallsyms])\nffffffff811105ea __perf_event_enable ([kernel.kallsyms])\nffffffff8110b928 remote_function ([kernel.kallsyms])\nffffffff810a20e6 generic_smp_call_function_single_interrupt ([kernel.kallsyms])\nffffffff81030a57 smp_call_function_single_interrupt ([kernel.kallsyms])\nffffffff816647de call_function_single_interrupt ([kernel.kallsyms])\n7f7241fbe6d8 arrayOopDesc::base(BasicType) const (/home/xguan/opt/jdk1.8.0_112/jre/lib/amd64/server/libjvm.so)\n7f7241239aec writeBytes (/home/xguan/opt/jdk1.8.0_112/jre/lib/amd64/libjava.so)\n7f724123176f Java_java_io_FileOutputStream_writeBytes (/home/xguan/opt/jdk1.8.0_112/jre/lib/amd64/libjava.so)\n7f722d119786 Ljava/io/FileOutputStream;::writeBytes (/tmp/perf-19982.map)\n7f722d142778 Ljava/io/PrintStream;::print (/tmp/perf-19982.map)\n7f722d12e1d4 LBusy;::main (/tmp/perf-19982.map)\n7f722d0004e7 call_stub (/tmp/perf-19982.map)\n7f72421d2d76 JavaCalls::call_helper(JavaValue, methodHandle, JavaCallArguments, Thread) (/home/xguan/opt/jdk1.8.0_112/jre/lib/amd64/server/libjvm.so)\n7f72421ed566 jni_invoke_static(JNIEnv_, JavaValue, _jobject, JNICallType, _jmethodID, JNI_ArgumentPusher, Thread) (/home/xguan/opt/jdk1.8.0_112/jre/lib/amd64/server/libjvm.so)\n7f72421f987a jni_CallStaticVoidMethod (/home/xguan/opt/jdk1.8.0_112/jre/lib/amd64/server/libjvm.so)\n7f724309ebdf JavaMain (/home/xguan/opt/jdk1.8.0_112/lib/amd64/jli/libjli.so)\n7f72432b4e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\n"
  },
  {
    "path": "test/perf-js-stacks-01.txt",
    "content": "node-v011 31912 cpu-clock: \n            13a80b608e0a RegExp:[&<>\\\"\\'] (/tmp/perf-7539.map)\n             c6d7895aac9 LazyCompile:~body_0 evalmachine.<anonymous>:1 (/tmp/perf-31912.map)\n                   dd777 v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*, bool) (/tmp/node-v011)\n             c6d788f8125 LazyCompile:*Async$consumeFunctionBuffer /apps/node/webapp/node_modules/xxxxx/js/main/async.js:39 (/tmp/perf-31912.map)\n             c6d78490728 LazyCompile:_tickDomainCallback node.js:387 (/tmp/perf-31912.map)\n             c6d78146ea0 Builtin:A builtin from the snapshot (/tmp/perf-31912.map)\n             c6d78125f71 Stub:JSEntryStub (/tmp/perf-31912.map)\n                  7dbd0b v8::internal::Invoke(bool, v8::internal::Handle<v8::internal::JSFunction>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*) (/tmp/node-v011)\n                  7dd777 v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*, bool) (/tmp/node-v011)\n                  74d468 v8::Function::Call(v8::Handle<v8::Value>, int, v8::Handle<v8::Value>*) (/tmp/node-v011)\n                  af2fa1 node::After(uv_fs_s*) (/tmp/node-v011)\n                  b53aad uv__work_done (/tmp/node-v011)\n                  b551ed uv__async_event (/tmp/node-v011)\n                  b55383 uv__async_io (/tmp/node-v011)\n                  b63b72 uv__io_poll (/tmp/node-v011)\n                  b55d17 uv_run (/tmp/node-v011)\n                  ae5f31 node::Start(int, char**) (/tmp/node-v011)\n            7f9c33ac176d __libc_start_main (/lib/x86_64-linux-gnu/libc-2.15.so)\n\nnode-v011 31912 cpu-clock: \n             c6d78255e68 RegExp:\\bFoo ?Bar(?:/[\\d.]+|[ \\w.]*) (/tmp/perf-31912.map)\n             c6d788f8125 LazyCompile:*Async$consumeFunctionBuffer /apps/node/webapp/node_modules/xxxxx/js/main/async.js:39 (/tmp/perf-31912.map)\n             c6d78490728 LazyCompile:_tickDomainCallback node.js:387 (/tmp/perf-31912.map)\n             c6d78146ea0 Builtin:A builtin from the snapshot (/tmp/perf-31912.map)\n             c6d78125f71 Stub:JSEntryStub (/tmp/perf-31912.map)\n                  7dbd0b v8::internal::Invoke(bool, v8::internal::Handle<v8::internal::JSFunction>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*) (/tmp/node-v011)\n                  7dd777 v8::internal::Execution::Call(v8::internal::Isolate*, v8::internal::Handle<v8::internal::Object>, v8::internal::Handle<v8::internal::Object>, int, v8::internal::Handle<v8::internal::Object>*, bool) (/tmp/node-v011)\n                  74d468 v8::Function::Call(v8::Handle<v8::Value>, int, v8::Handle<v8::Value>*) (/tmp/node-v011)\n                  af2fa1 node::After(uv_fs_s*) (/tmp/node-v011)\n                  b53aad uv__work_done (/tmp/node-v011)\n                  b551ed uv__async_event (/tmp/node-v011)\n                  b55383 uv__async_io (/tmp/node-v011)\n                  b63b72 uv__io_poll (/tmp/node-v011)\n                  b55d17 uv_run (/tmp/node-v011)\n                  ae5f31 node::Start(int, char**) (/tmp/node-v011)\n            7f9c33ac176d __libc_start_main (/lib/x86_64-linux-gnu/libc-2.15.so)\n\n"
  },
  {
    "path": "test/perf-mirageos-stacks-01.txt",
    "content": "# ========\n# captured on: Wed Jan 27 00:56:27 2016\n# hostname : lgud-bgregg\n# os release : 3.13.0-44-generic\n# perf version : 3.13.11-ckt12\n# arch : x86_64\n# nrcpus online : 4\n# nrcpus avail : 4\n# cpudesc : Intel(R) Core(TM) i5-2400 CPU @ 3.10GHz\n# cpuid : GenuineIntel,6,42,7\n# total memory : 3130540 kB\n# cmdline : /usr/lib/linux-tools-3.13.0-44/perf record -F 99 -a --call-graph=dwarf -- sleep 10 \n# event : name = cpu-clock, type = 1, config = 0x0, config1 = 0x0, config2 = 0x0, excl_usr = 0, excl_kern = 0, excl_host = 0, excl_guest = 1, precise_ip = 0, attr_mmap2 = 0, attr_mmap  = 1, attr_mmap_data = 0\n# HEADER_CPU_TOPOLOGY info available, use -I to display\n# HEADER_NUMA_TOPOLOGY info available, use -I to display\n# pmu mappings: software = 1, tracepoint = 2, breakpoint = 5\n# ========\n#\nmir-console 23166 [000]  1333.768765: cpu-clock: \n\t          44bee3 camlLwt__return_1285 (/mnt/mirage/mirage-skeleton/console.unix2/_build/main.native)\n\t          4093d0 camlMain__fun_1418 (/mnt/mirage/mirage-skeleton/console.unix2/_build/main.native)\n\nswapper     0 [001]  1333.768770: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nswapper     0 [002]  1333.768806: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nswapper     0 [003]  1333.768847: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nmir-console 23166 [000]  1333.778865: cpu-clock: \n\t          44b1d0 camlLwt__repr_rec_1132 (/mnt/mirage/mirage-skeleton/console.unix2/_build/main.native)\n\t    7f57a760d920 [unknown] ([unknown])\n\nswapper     0 [001]  1333.778869: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nswapper     0 [002]  1333.778907: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nswapper     0 [003]  1333.778947: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nmir-console 23166 [000]  1333.788966: cpu-clock: \n\t          44c8f9 camlLwt__bind_1394 (/mnt/mirage/mirage-skeleton/console.unix2/_build/main.native)\n\nswapper     0 [001]  1333.788979: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nswapper     0 [002]  1333.789008: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nswapper     0 [003]  1333.789054: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nmir-console 23166 [000]  1333.799067: cpu-clock: \n\t          44c8fe camlLwt__bind_1394 (/mnt/mirage/mirage-skeleton/console.unix2/_build/main.native)\n\nswapper     0 [001]  1333.799077: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nswapper     0 [002]  1333.799113: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nswapper     0 [003]  1333.799155: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nswapper     0 [001]  1333.809178: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nmir-console 23166 [000]  1333.809182: cpu-clock: \n\t          40955c camlUnikernel__fun_1396 (/mnt/mirage/mirage-skeleton/console.unix2/_build/main.native)\n\nswapper     0 [002]  1333.809217: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nswapper     0 [003]  1333.809257: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nmir-console 23166 [000]  1333.819269: cpu-clock: \n\t          44c92f camlLwt__bind_1394 (/mnt/mirage/mirage-skeleton/console.unix2/_build/main.native)\n\t          6eaf28 [unknown] ([unknown])\n\nswapper     0 [001]  1333.819279: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nswapper     0 [002]  1333.819315: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nswapper     0 [003]  1333.819357: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nmir-console 23166 [000]  1333.829370: cpu-clock: \n\t          409598 camlUnikernel____pa_lwt_loop_1382 (/mnt/mirage/mirage-skeleton/console.unix2/_build/main.native)\n\t          4093d0 camlMain__fun_1418 (/mnt/mirage/mirage-skeleton/console.unix2/_build/main.native)\n\nswapper     0 [001]  1333.829381: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nswapper     0 [002]  1333.829417: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nswapper     0 [003]  1333.829458: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nmir-console 23166 [000]  1333.839471: cpu-clock: \n\t          44c918 camlLwt__bind_1394 (/mnt/mirage/mirage-skeleton/console.unix2/_build/main.native)\n\t          4095de camlUnikernel____pa_lwt_loop_1382 (/mnt/mirage/mirage-skeleton/console.unix2/_build/main.native)\n\t          409533 camlMain__entry (/mnt/mirage/mirage-skeleton/console.unix2/_build/main.native)\n\t          4059c9 caml_program (/mnt/mirage/mirage-skeleton/console.unix2/_build/main.native)\n\t          4b43ca caml_start_program (/mnt/mirage/mirage-skeleton/console.unix2/_build/main.native)\n\t    7fff978f8dd0 [unknown] ([unknown])\n\nswapper     0 [001]  1333.839481: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nswapper     0 [002]  1333.839517: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nswapper     0 [003]  1333.839559: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nmir-console 23166 [000]  1333.849572: cpu-clock: \n\t          44bef5 camlLwt__return_1285 (/mnt/mirage/mirage-skeleton/console.unix2/_build/main.native)\n\t          4093d0 camlMain__fun_1418 (/mnt/mirage/mirage-skeleton/console.unix2/_build/main.native)\n\nswapper     0 [001]  1333.849583: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nswapper     0 [002]  1333.849619: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nswapper     0 [003]  1333.849661: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nmir-console 23166 [000]  1333.859673: cpu-clock: \n\t          44c918 camlLwt__bind_1394 (/mnt/mirage/mirage-skeleton/console.unix2/_build/main.native)\n\t          4095de camlUnikernel____pa_lwt_loop_1382 (/mnt/mirage/mirage-skeleton/console.unix2/_build/main.native)\n\t          409533 camlMain__entry (/mnt/mirage/mirage-skeleton/console.unix2/_build/main.native)\n\t          4059c9 caml_program (/mnt/mirage/mirage-skeleton/console.unix2/_build/main.native)\n\t          4b43ca caml_start_program (/mnt/mirage/mirage-skeleton/console.unix2/_build/main.native)\n\t    7fff978f8dd0 [unknown] ([unknown])\n\nswapper     0 [001]  1333.859683: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nswapper     0 [002]  1333.859722: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nswapper     0 [003]  1333.859761: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nmir-console 23166 [000]  1333.869775: cpu-clock: \n\t          44b1d0 camlLwt__repr_rec_1132 (/mnt/mirage/mirage-skeleton/console.unix2/_build/main.native)\n\t    7f57a7549e40 [unknown] ([unknown])\n\nswapper     0 [001]  1333.869785: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nswapper     0 [002]  1333.869823: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nswapper     0 [003]  1333.869863: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nmir-console 23166 [000]  1333.879875: cpu-clock: \n\t          44bef9 camlLwt__return_1285 (/mnt/mirage/mirage-skeleton/console.unix2/_build/main.native)\n\t          6eaf28 [unknown] ([unknown])\n\nswapper     0 [001]  1333.879885: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nswapper     0 [002]  1333.879924: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nswapper     0 [003]  1333.879965: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nmir-console 23166 [000]  1333.889977: cpu-clock: \n\t          44c92f camlLwt__bind_1394 (/mnt/mirage/mirage-skeleton/console.unix2/_build/main.native)\n\t          6eaf28 [unknown] ([unknown])\n\nswapper     0 [001]  1333.889987: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nswapper     0 [002]  1333.890023: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nswapper     0 [003]  1333.890065: cpu-clock: \n\tffffffff810013aa xen_hypercall_sched_op ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810bef35 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff810101b8 cpu_bringup_and_idle ([kernel.kallsyms])\n\nmir-console 23166 [000]  1333.900077: cpu-clock: \n\t          44bee3 camlLwt__return_1285 (/mnt/mirage/mirage-skeleton/console.unix2/_build/main.native)\n\t          4093d0 camlMain__fun_1418 (/mnt/mirage/mirage-skeleton/console.unix2/_build/main.native)\n"
  },
  {
    "path": "test/perf-numa-stacks-01.txt",
    "content": "# ========\n# captured on: Thu Nov 19 01:36:57 2015\n# hostname : xxxxxclusters-r38xl-i-xxxxxxxx\n# os release : 3.13.0-49-generic\n# perf version : 3.13.11-ckt17\n# arch : x86_64\n# nrcpus online : 32\n# nrcpus avail : 32\n# cpudesc : Intel(R) Xeon(R) CPU E5-2670 v2 @ 2.50GHz\n# cpuid : GenuineIntel,6,62,4\n# total memory : 251902420 kB\n# cmdline : /usr/lib/linux-tools-3.13.0-49/perf record -F 99 -a -g -- sleep 20 \n# event : name = cpu-clock, type = 1, config = 0x0, config1 = 0x0, config2 = 0x0, excl_usr = 0, excl_kern = 0, excl_host = 0, excl_guest = 1, precise_ip = 0, attr_mmap2 = 0, attr_mmap  = 1, attr_mmap_data = 0\n# HEADER_CPU_TOPOLOGY info available, use -I to display\n# HEADER_NUMA_TOPOLOGY info available, use -I to display\n# pmu mappings: software = 1, tracepoint = 2, breakpoint = 5\n# ========\n#\njava 11008 [001] 30143.481555: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783b58 [unknown] (/tmp/perf-10939.map)\n\t    7ecef8f2f480 [unknown] ([unknown])\n\njava 11007 [000] 30143.481565: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783e3d [unknown] (/tmp/perf-10939.map)\n\t    7f08c8a52338 [unknown] ([unknown])\n\nswapper     0 [002] 30143.481591: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 11011 [003] 30143.481612: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783e4a [unknown] (/tmp/perf-10939.map)\n\t    7f08c8a52338 [unknown] ([unknown])\n\nswapper     0 [004] 30143.481637: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 10998 [005] 30143.481649: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b56bffa1 [unknown] (/tmp/perf-10939.map)\n\t    7f08c880b5c8 [unknown] ([unknown])\n\njava 11020 [006] 30143.481655: cpu-clock: \n\t    7f08b5817256 [unknown] (/tmp/perf-10939.map)\n\njava 11017 [007] 30143.481683: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b57ae255 [unknown] (/tmp/perf-10939.map)\n\nswapper     0 [008] 30143.481709: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 10993 [009] 30143.481720: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b50523da [unknown] (/tmp/perf-10939.map)\n\t    7f08b579f7e7 [unknown] (/tmp/perf-10939.map)\n\t    7f08c88c60a8 [unknown] ([unknown])\n\njava 10996 [010] 30143.481748: cpu-clock: \n\t    7f08b57feb68 [unknown] (/tmp/perf-10939.map)\n\njava 11013 [011] 30143.481769: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b578437b [unknown] (/tmp/perf-10939.map)\n\njava 11000 [012] 30143.481774: cpu-clock: \n\t    7f08b57feb75 [unknown] (/tmp/perf-10939.map)\n\njava 11001 [013] 30143.481795: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b57ae255 [unknown] (/tmp/perf-10939.map)\n\nswapper     0 [014] 30143.481808: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 11015 [015] 30143.481835: cpu-clock: \n\tffffffff81376e5d find_next_bit ([kernel.kallsyms])\n\tffffffff813649c0 cpumask_next_and ([kernel.kallsyms])\n\tffffffff8100fe0f __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08cc8f533e TypeArrayKlass::allocate_common(int, bool, Thread*) (/usr/lib/jvm/java-8-oracle-1.8.0.45/jre/lib/amd64/server/libjvm.so)\n\t    7f08cc8f5673 TypeArrayKlass::multi_allocate(int, int*, Thread*) (/usr/lib/jvm/java-8-oracle-1.8.0.45/jre/lib/amd64/server/libjvm.so)\n\t    7f08cc76d5aa ObjArrayKlass::multi_allocate(int, int*, Thread*) (/usr/lib/jvm/java-8-oracle-1.8.0.45/jre/lib/amd64/server/libjvm.so)\n\t    7f08cc824642 OptoRuntime::multianewarray2_C(Klass*, int, int, JavaThread*) (/usr/lib/jvm/java-8-oracle-1.8.0.45/jre/lib/amd64/server/libjvm.so)\n\t    7f08b5331209 [unknown] (/tmp/perf-10939.map)\n\nswapper     0 [016] 30143.481883: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 11002 [017] 30143.481895: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b50523da [unknown] (/tmp/perf-10939.map)\n\t    7f08b579f7e7 [unknown] (/tmp/perf-10939.map)\n\t    7f08c88c60a8 [unknown] ([unknown])\n\njava 10992 [019] 30143.481952: cpu-clock: \n\t    7f08b50523ce [unknown] (/tmp/perf-10939.map)\n\t    7f08b579f7e7 [unknown] (/tmp/perf-10939.map)\n\t    7f08c88c60a8 [unknown] ([unknown])\n\njava 11018 [018] 30143.481960: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783e4e [unknown] (/tmp/perf-10939.map)\n\t    7f08c8a52338 [unknown] ([unknown])\n\njava 11009 [020] 30143.482001: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b57ae255 [unknown] (/tmp/perf-10939.map)\n\njava 11012 [021] 30143.482014: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783e3d [unknown] (/tmp/perf-10939.map)\n\t    7f08c8a52338 [unknown] ([unknown])\n\nswapper     0 [022] 30143.482053: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [023] 30143.482082: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 11003 [024] 30143.482172: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b57ae255 [unknown] (/tmp/perf-10939.map)\n\nswapper     0 [025] 30143.482217: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 10999 [026] 30143.482242: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783b58 [unknown] (/tmp/perf-10939.map)\n\t    7ecef8f2f480 [unknown] ([unknown])\n\nswapper     0 [027] 30143.482289: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [028] 30143.482319: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 11021 [029] 30143.482328: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b50523ce [unknown] (/tmp/perf-10939.map)\n\t    7f08b579f7e7 [unknown] (/tmp/perf-10939.map)\n\t    7f08c88c60a8 [unknown] ([unknown])\n\nswapper     0 [030] 30143.482367: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [031] 30143.482412: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 11007 [000] 30143.491646: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b50523b6 [unknown] (/tmp/perf-10939.map)\n\t    7f08b579f7e7 [unknown] (/tmp/perf-10939.map)\n\t    7f08c88c60a8 [unknown] ([unknown])\n\nswapper     0 [001] 30143.491660: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [002] 30143.491692: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [004] 30143.491731: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 11011 [003] 30143.491743: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783e4a [unknown] (/tmp/perf-10939.map)\n\t    7f08c8a52338 [unknown] ([unknown])\n\njava 10998 [005] 30143.491750: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783e4e [unknown] (/tmp/perf-10939.map)\n\t    7f08c8a52338 [unknown] ([unknown])\n\njava 11020 [006] 30143.491756: cpu-clock: \n\t    7f08b5817256 [unknown] (/tmp/perf-10939.map)\n\njava 11017 [007] 30143.491767: cpu-clock: \n\t    7f08b5783bfc [unknown] (/tmp/perf-10939.map)\n\t    7ecef8f2f480 [unknown] ([unknown])\n\nswapper     0 [008] 30143.491808: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 10993 [009] 30143.491819: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5784130 [unknown] (/tmp/perf-10939.map)\n\njava 10996 [010] 30143.491849: cpu-clock: \n\t    7f08b57feb75 [unknown] (/tmp/perf-10939.map)\n\njava 11013 [011] 30143.491865: cpu-clock: \n\tffffffff81433511 notify_remote_via_irq ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b57ae255 [unknown] (/tmp/perf-10939.map)\n\njava 11000 [012] 30143.491875: cpu-clock: \n\t    7f08b57feb3e [unknown] (/tmp/perf-10939.map)\n\nswapper     0 [014] 30143.491905: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 11001 [013] 30143.491909: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b579f8a4 [unknown] (/tmp/perf-10939.map)\n\t    7f08c88c60a8 [unknown] ([unknown])\n\njava 11015 [015] 30143.491961: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08cc8f533e TypeArrayKlass::allocate_common(int, bool, Thread*) (/usr/lib/jvm/java-8-oracle-1.8.0.45/jre/lib/amd64/server/libjvm.so)\n\t    7f08cc8f5673 TypeArrayKlass::multi_allocate(int, int*, Thread*) (/usr/lib/jvm/java-8-oracle-1.8.0.45/jre/lib/amd64/server/libjvm.so)\n\t    7f08cc76d5aa ObjArrayKlass::multi_allocate(int, int*, Thread*) (/usr/lib/jvm/java-8-oracle-1.8.0.45/jre/lib/amd64/server/libjvm.so)\n\t    7f08cc824642 OptoRuntime::multianewarray2_C(Klass*, int, int, JavaThread*) (/usr/lib/jvm/java-8-oracle-1.8.0.45/jre/lib/amd64/server/libjvm.so)\n\t    7f08b5331209 [unknown] (/tmp/perf-10939.map)\n\njava 11008 [016] 30143.491990: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b56bffa1 [unknown] (/tmp/perf-10939.map)\n\t    7f08c880b5c8 [unknown] ([unknown])\n\njava 11002 [017] 30143.492004: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b578411f [unknown] (/tmp/perf-10939.map)\n\njava 11018 [018] 30143.492031: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b579f8a4 [unknown] (/tmp/perf-10939.map)\n\t    7f08c88c60a8 [unknown] ([unknown])\n\njava 10992 [019] 30143.492052: cpu-clock: \n\t    7f08b5784383 [unknown] (/tmp/perf-10939.map)\n\njava 11009 [020] 30143.492056: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783b58 [unknown] (/tmp/perf-10939.map)\n\t    7ecef8f2f480 [unknown] ([unknown])\n\njava 11012 [021] 30143.492074: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b579f8a4 [unknown] (/tmp/perf-10939.map)\n\t    7f08c88c60a8 [unknown] ([unknown])\n\nswapper     0 [022] 30143.492146: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [023] 30143.492182: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 11003 [024] 30143.492267: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b56bffa1 [unknown] (/tmp/perf-10939.map)\n\t    7f08c880b5c8 [unknown] ([unknown])\n\nswapper     0 [025] 30143.492321: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 10999 [026] 30143.492343: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783e4e [unknown] (/tmp/perf-10939.map)\n\t    7f08c8a52338 [unknown] ([unknown])\n\nswapper     0 [027] 30143.492383: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [028] 30143.492417: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [029] 30143.492433: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [030] 30143.492473: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [031] 30143.492508: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [000] 30143.501751: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff81710037 rest_init ([kernel.kallsyms])\n\tffffffff81d35f70 start_kernel ([kernel.kallsyms])\n\tffffffff81d355ee x86_64_start_reservations ([kernel.kallsyms])\n\tffffffff81d35733 x86_64_start_kernel ([kernel.kallsyms])\n\nswapper     0 [001] 30143.501756: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [002] 30143.501795: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 11011 [003] 30143.501800: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5784377 [unknown] (/tmp/perf-10939.map)\n\nswapper     0 [005] 30143.501855: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 11020 [006] 30143.501858: cpu-clock: \n\t    7f08b581723e [unknown] (/tmp/perf-10939.map)\n\njava 10998 [004] 30143.501867: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783e3d [unknown] (/tmp/perf-10939.map)\n\t    7f08c8a52338 [unknown] ([unknown])\n\nswapper     0 [007] 30143.501884: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 11021 [008] 30143.501898: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b50523c2 [unknown] (/tmp/perf-10939.map)\n\t    7f08b579f7e7 [unknown] (/tmp/perf-10939.map)\n\t    7f08c88c60a8 [unknown] ([unknown])\n\njava 10993 [009] 30143.501903: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b578411f [unknown] (/tmp/perf-10939.map)\n\njava 10996 [010] 30143.501949: cpu-clock: \n\t    7f08b57feb3e [unknown] (/tmp/perf-10939.map)\n\njava 11013 [011] 30143.501970: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b56bffa1 [unknown] (/tmp/perf-10939.map)\n\t    7f08c880b5c8 [unknown] ([unknown])\n\njava 11000 [012] 30143.501975: cpu-clock: \n\t    7f08b57feb8f [unknown] (/tmp/perf-10939.map)\n\njava 11001 [013] 30143.501997: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783e4a [unknown] (/tmp/perf-10939.map)\n\t    7f08c8a52338 [unknown] ([unknown])\n\njava 10999 [014] 30143.501999: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783e3d [unknown] (/tmp/perf-10939.map)\n\t    7f08c8a52338 [unknown] ([unknown])\n\njava 11015 [015] 30143.502059: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08cc8f533e TypeArrayKlass::allocate_common(int, bool, Thread*) (/usr/lib/jvm/java-8-oracle-1.8.0.45/jre/lib/amd64/server/libjvm.so)\n\t    7f08cc8f5673 TypeArrayKlass::multi_allocate(int, int*, Thread*) (/usr/lib/jvm/java-8-oracle-1.8.0.45/jre/lib/amd64/server/libjvm.so)\n\t    7f08cc76d5aa ObjArrayKlass::multi_allocate(int, int*, Thread*) (/usr/lib/jvm/java-8-oracle-1.8.0.45/jre/lib/amd64/server/libjvm.so)\n\t    7f08cc824642 OptoRuntime::multianewarray2_C(Klass*, int, int, JavaThread*) (/usr/lib/jvm/java-8-oracle-1.8.0.45/jre/lib/amd64/server/libjvm.so)\n\t    7f08b5331209 [unknown] (/tmp/perf-10939.map)\n\njava 11008 [016] 30143.502107: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783e4e [unknown] (/tmp/perf-10939.map)\n\t    7f08c8a52338 [unknown] ([unknown])\n\njava 11002 [017] 30143.502108: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5784130 [unknown] (/tmp/perf-10939.map)\n\njava 11018 [018] 30143.502132: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783e3d [unknown] (/tmp/perf-10939.map)\n\t    7f08c8a52338 [unknown] ([unknown])\n\njava 11017 [019] 30143.502158: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b56bffa1 [unknown] (/tmp/perf-10939.map)\n\t    7f08c880b5c8 [unknown] ([unknown])\n\njava 11009 [020] 30143.502205: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b56bffa1 [unknown] (/tmp/perf-10939.map)\n\t    7f08c880b5c8 [unknown] ([unknown])\n\njava 11012 [021] 30143.502213: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783e4e [unknown] (/tmp/perf-10939.map)\n\t    7f08c8a52338 [unknown] ([unknown])\n\njava 10992 [022] 30143.502235: cpu-clock: \n\t    7f08b57842cb [unknown] (/tmp/perf-10939.map)\n\njava 11007 [023] 30143.502290: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b578411f [unknown] (/tmp/perf-10939.map)\n\njava 11003 [024] 30143.502367: cpu-clock: \n\tffffffff81376e63 find_next_bit ([kernel.kallsyms])\n\tffffffff8101056e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783e4e [unknown] (/tmp/perf-10939.map)\n\t    7f08c8a52338 [unknown] ([unknown])\n\nswapper     0 [025] 30143.502420: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [026] 30143.502456: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [027] 30143.502482: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [028] 30143.502523: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [029] 30143.502549: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [030] 30143.502574: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [031] 30143.502610: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [000] 30143.511847: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff81710037 rest_init ([kernel.kallsyms])\n\tffffffff81d35f70 start_kernel ([kernel.kallsyms])\n\tffffffff81d355ee x86_64_start_reservations ([kernel.kallsyms])\n\tffffffff81d35733 x86_64_start_kernel ([kernel.kallsyms])\n\njava 10992 [001] 30143.511849: cpu-clock: \n\t    7f08b5783e40 [unknown] (/tmp/perf-10939.map)\n\t    7f08c8a52338 [unknown] ([unknown])\n\njava 11017 [002] 30143.511884: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783e4a [unknown] (/tmp/perf-10939.map)\n\t    7f08c8a52338 [unknown] ([unknown])\n\njava 11011 [003] 30143.511901: cpu-clock: \n\tffffffff811824ec change_protection_range ([kernel.kallsyms])\n\tffffffff81182705 change_protection ([kernel.kallsyms])\n\tffffffff811988bb change_prot_numa ([kernel.kallsyms])\n\tffffffff8109f082 task_numa_work ([kernel.kallsyms])\n\tffffffff81088337 task_work_run ([kernel.kallsyms])\n\tffffffff81013ee7 do_notify_resume ([kernel.kallsyms])\n\tffffffff8172a1a2 retint_signal ([kernel.kallsyms])\n\t    7f08b5784261 [unknown] (/tmp/perf-10939.map)\n\t    7f08c8a52338 [unknown] ([unknown])\n\njava 11020 [006] 30143.511921: cpu-clock: \n\t    7f08b581723e [unknown] (/tmp/perf-10939.map)\n\njava 10998 [004] 30143.511930: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b50523ce [unknown] (/tmp/perf-10939.map)\n\t    7f08b579f7e7 [unknown] (/tmp/perf-10939.map)\n\t    7f08c88c60a8 [unknown] ([unknown])\n\nswapper     0 [005] 30143.511960: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [007] 30143.511982: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 11021 [008] 30143.512011: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b578412c [unknown] (/tmp/perf-10939.map)\n\njava 10993 [009] 30143.512025: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783b58 [unknown] (/tmp/perf-10939.map)\n\t    7ecef8f2f480 [unknown] ([unknown])\n\njava 10996 [010] 30143.512049: cpu-clock: \n\t    7f08b57feb9c [unknown] (/tmp/perf-10939.map)\n\njava 11000 [012] 30143.512058: cpu-clock: \n\t    7f08b57feb5b [unknown] (/tmp/perf-10939.map)\n\njava 10999 [014] 30143.512058: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783e4a [unknown] (/tmp/perf-10939.map)\n\t    7f08c8a52338 [unknown] ([unknown])\n\njava 11001 [013] 30143.512060: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783e3d [unknown] (/tmp/perf-10939.map)\n\t    7f08c8a52338 [unknown] ([unknown])\n\njava 11013 [011] 30143.512061: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783e4e [unknown] (/tmp/perf-10939.map)\n\t    7f08c8a52338 [unknown] ([unknown])\n\njava 11018 [018] 30143.512201: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b579f8a4 [unknown] (/tmp/perf-10939.map)\n\t    7f08c88c60a8 [unknown] ([unknown])\n\njava 11008 [016] 30143.512214: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783e4e [unknown] (/tmp/perf-10939.map)\n\t    7f08c8a52338 [unknown] ([unknown])\n\njava 11002 [017] 30143.512219: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b57ae255 [unknown] (/tmp/perf-10939.map)\n\njava 11015 [015] 30143.512226: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08cc8f533e TypeArrayKlass::allocate_common(int, bool, Thread*) (/usr/lib/jvm/java-8-oracle-1.8.0.45/jre/lib/amd64/server/libjvm.so)\n\t    7f08cc8f5673 TypeArrayKlass::multi_allocate(int, int*, Thread*) (/usr/lib/jvm/java-8-oracle-1.8.0.45/jre/lib/amd64/server/libjvm.so)\n\t    7f08cc76d5aa ObjArrayKlass::multi_allocate(int, int*, Thread*) (/usr/lib/jvm/java-8-oracle-1.8.0.45/jre/lib/amd64/server/libjvm.so)\n\t    7f08cc824642 OptoRuntime::multianewarray2_C(Klass*, int, int, JavaThread*) (/usr/lib/jvm/java-8-oracle-1.8.0.45/jre/lib/amd64/server/libjvm.so)\n\t    7f08b5331209 [unknown] (/tmp/perf-10939.map)\n\nswapper     0 [019] 30143.512266: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 11009 [020] 30143.512299: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b579f8a4 [unknown] (/tmp/perf-10939.map)\n\t    7f08c88c60a8 [unknown] ([unknown])\n\njava 11012 [021] 30143.512324: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b578437b [unknown] (/tmp/perf-10939.map)\n\nswapper     0 [022] 30143.512347: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 11007 [023] 30143.512420: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b578411f [unknown] (/tmp/perf-10939.map)\n\njava 11003 [024] 30143.512471: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b579f8a4 [unknown] (/tmp/perf-10939.map)\n\t    7f08c88c60a8 [unknown] ([unknown])\n\nswapper     0 [025] 30143.512523: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [026] 30143.512554: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [027] 30143.512586: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [028] 30143.512622: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [029] 30143.512647: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [030] 30143.512674: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [031] 30143.512712: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 10992 [000] 30143.521940: cpu-clock: \n\t    7f08b578432f [unknown] (/tmp/perf-10939.map)\n\nswapper     0 [001] 30143.521964: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 11017 [002] 30143.521991: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b579f8a4 [unknown] (/tmp/perf-10939.map)\n\t    7f08c88c60a8 [unknown] ([unknown])\n\njava 11011 [003] 30143.522003: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783b58 [unknown] (/tmp/perf-10939.map)\n\t    7ecef8f2f480 [unknown] ([unknown])\n\njava 10998 [004] 30143.522032: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783e4e [unknown] (/tmp/perf-10939.map)\n\t    7f08c8a52338 [unknown] ([unknown])\n\nswapper     0 [005] 30143.522057: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 11020 [006] 30143.522059: cpu-clock: \n\t    7f08b5817256 [unknown] (/tmp/perf-10939.map)\n\nswapper     0 [007] 30143.522086: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 11021 [008] 30143.522101: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b578411f [unknown] (/tmp/perf-10939.map)\n\njava 10993 [009] 30143.522131: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b56bffa1 [unknown] (/tmp/perf-10939.map)\n\t    7f08c880b5c8 [unknown] ([unknown])\n\njava 10996 [010] 30143.522150: cpu-clock: \n\t    7f08b57feb3e [unknown] (/tmp/perf-10939.map)\n\njava 11013 [011] 30143.522173: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783e4a [unknown] (/tmp/perf-10939.map)\n\t    7f08c8a52338 [unknown] ([unknown])\n\njava 11000 [012] 30143.522178: cpu-clock: \n\t    7f08b57feb8f [unknown] (/tmp/perf-10939.map)\n\njava 10999 [014] 30143.522206: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b50523c2 [unknown] (/tmp/perf-10939.map)\n\t    7f08b579f7e7 [unknown] (/tmp/perf-10939.map)\n\t    7f08c88c60a8 [unknown] ([unknown])\n\njava 11001 [013] 30143.522214: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b578411f [unknown] (/tmp/perf-10939.map)\n\njava 11015 [015] 30143.522264: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08cc8f533e TypeArrayKlass::allocate_common(int, bool, Thread*) (/usr/lib/jvm/java-8-oracle-1.8.0.45/jre/lib/amd64/server/libjvm.so)\n\t    7f08cc8f5673 TypeArrayKlass::multi_allocate(int, int*, Thread*) (/usr/lib/jvm/java-8-oracle-1.8.0.45/jre/lib/amd64/server/libjvm.so)\n\t    7f08cc76d5aa ObjArrayKlass::multi_allocate(int, int*, Thread*) (/usr/lib/jvm/java-8-oracle-1.8.0.45/jre/lib/amd64/server/libjvm.so)\n\t    7f08cc824642 OptoRuntime::multianewarray2_C(Klass*, int, int, JavaThread*) (/usr/lib/jvm/java-8-oracle-1.8.0.45/jre/lib/amd64/server/libjvm.so)\n\t    7f08b5331209 [unknown] (/tmp/perf-10939.map)\n\njava 11008 [016] 30143.522284: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783e4a [unknown] (/tmp/perf-10939.map)\n\t    7f08c8a52338 [unknown] ([unknown])\n\njava 11002 [017] 30143.522306: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b56bffa1 [unknown] (/tmp/perf-10939.map)\n\t    7f08c880b5c8 [unknown] ([unknown])\n\njava 11018 [018] 30143.522339: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b578411f [unknown] (/tmp/perf-10939.map)\n\nswapper     0 [019] 30143.522367: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 11009 [020] 30143.522413: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b579f8a4 [unknown] (/tmp/perf-10939.map)\n\t    7f08c88c60a8 [unknown] ([unknown])\n\njava 11012 [021] 30143.522415: cpu-clock: \n\tffffffff810dc426 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b57b5a5c [unknown] (/tmp/perf-10939.map)\n\nswapper     0 [022] 30143.522448: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 11007 [023] 30143.522472: cpu-clock: \n\tffffffff817299bb _raw_spin_unlock_irqrestore ([kernel.kallsyms])\n\tffffffff810dc462 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b57ae255 [unknown] (/tmp/perf-10939.map)\n\njava 11003 [024] 30143.522573: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b578412c [unknown] (/tmp/perf-10939.map)\n\nswapper     0 [025] 30143.522620: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [026] 30143.522655: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [027] 30143.522684: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [028] 30143.522716: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [029] 30143.522742: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [030] 30143.522775: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [031] 30143.522811: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 10992 [000] 30143.532040: cpu-clock: \n\tffffffff8172dbd7 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783e3d [unknown] (/tmp/perf-10939.map)\n\t    7f08c8a52338 [unknown] ([unknown])\n\nswapper     0 [001] 30143.532061: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 11017 [002] 30143.532062: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783e4a [unknown] (/tmp/perf-10939.map)\n\t    7f08c8a52338 [unknown] ([unknown])\n\njava 11011 [003] 30143.532066: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b56bffa1 [unknown] (/tmp/perf-10939.map)\n\t    7f08c880b5c8 [unknown] ([unknown])\n\nswapper     0 [004] 30143.532134: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [007] 30143.532183: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 11020 [006] 30143.532213: cpu-clock: \n\t    7f08b5817256 [unknown] (/tmp/perf-10939.map)\n\njava 11008 [005] 30143.532214: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b579f8a4 [unknown] (/tmp/perf-10939.map)\n\t    7f08c88c60a8 [unknown] ([unknown])\n\njava 11021 [008] 30143.532219: cpu-clock: \n\tffffffff81369654 radix_tree_lookup_element ([kernel.kallsyms])\n\tffffffff810bf187 irq_to_desc ([kernel.kallsyms])\n\tffffffff810c26ae irq_get_irq_data ([kernel.kallsyms])\n\tffffffff814326a6 evtchn_from_irq ([kernel.kallsyms])\n\tffffffff814334f2 notify_remote_via_irq ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b57ae255 [unknown] (/tmp/perf-10939.map)\n\njava 10993 [009] 30143.532227: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783e3d [unknown] (/tmp/perf-10939.map)\n\t    7f08c8a52338 [unknown] ([unknown])\n\njava 10996 [010] 30143.532251: cpu-clock: \n\t    7f08b57feb75 [unknown] (/tmp/perf-10939.map)\n\njava 11000 [012] 30143.532280: cpu-clock: \n\t    7f08b57feb4b [unknown] (/tmp/perf-10939.map)\n\njava 11013 [011] 30143.532281: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5784130 [unknown] (/tmp/perf-10939.map)\n\njava 11001 [013] 30143.532304: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783bfc [unknown] (/tmp/perf-10939.map)\n\t    7ecef8f2f480 [unknown] ([unknown])\n\njava 10999 [014] 30143.532315: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5784130 [unknown] (/tmp/perf-10939.map)\n\njava 11015 [015] 30143.532340: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08cc8f533e TypeArrayKlass::allocate_common(int, bool, Thread*) (/usr/lib/jvm/java-8-oracle-1.8.0.45/jre/lib/amd64/server/libjvm.so)\n\t    7f08cc8f5673 TypeArrayKlass::multi_allocate(int, int*, Thread*) (/usr/lib/jvm/java-8-oracle-1.8.0.45/jre/lib/amd64/server/libjvm.so)\n\t    7f08cc76d5aa ObjArrayKlass::multi_allocate(int, int*, Thread*) (/usr/lib/jvm/java-8-oracle-1.8.0.45/jre/lib/amd64/server/libjvm.so)\n\t    7f08cc824642 OptoRuntime::multianewarray2_C(Klass*, int, int, JavaThread*) (/usr/lib/jvm/java-8-oracle-1.8.0.45/jre/lib/amd64/server/libjvm.so)\n\t    7f08b5331209 [unknown] (/tmp/perf-10939.map)\n\nswapper     0 [016] 30143.532386: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 11002 [017] 30143.532404: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b579f8a4 [unknown] (/tmp/perf-10939.map)\n\t    7f08c88c60a8 [unknown] ([unknown])\n\njava 11018 [018] 30143.532442: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b578412c [unknown] (/tmp/perf-10939.map)\n\njava 10998 [019] 30143.532472: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b50523ce [unknown] (/tmp/perf-10939.map)\n\t    7f08b579f7e7 [unknown] (/tmp/perf-10939.map)\n\t    7f08c88c60a8 [unknown] ([unknown])\n\njava 11009 [020] 30143.532507: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b50523ce [unknown] (/tmp/perf-10939.map)\n\t    7f08b579f7e7 [unknown] (/tmp/perf-10939.map)\n\t    7f08c88c60a8 [unknown] ([unknown])\n\njava 11012 [021] 30143.532516: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783b58 [unknown] (/tmp/perf-10939.map)\n\t    7ecef8f2f480 [unknown] ([unknown])\n\nswapper     0 [022] 30143.532548: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 11007 [023] 30143.532571: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783b58 [unknown] (/tmp/perf-10939.map)\n\t    7ecef8f2f480 [unknown] ([unknown])\n\njava 11003 [024] 30143.532684: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5784377 [unknown] (/tmp/perf-10939.map)\n\nswapper     0 [025] 30143.532725: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [026] 30143.532761: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [027] 30143.532787: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [028] 30143.532819: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [029] 30143.532838: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [030] 30143.532875: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\nswapper     0 [031] 30143.532915: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 10992 [000] 30143.542141: cpu-clock: \n\t    7f08b57ae3b4 [unknown] (/tmp/perf-10939.map)\n\njava 11017 [001] 30143.542157: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b579f8a4 [unknown] (/tmp/perf-10939.map)\n\t    7f08c88c60a8 [unknown] ([unknown])\n\njava 11011 [003] 30143.542163: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b579f8a4 [unknown] (/tmp/perf-10939.map)\n\t    7f08c88c60a8 [unknown] ([unknown])\n\nswapper     0 [002] 30143.542196: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n\njava 10999 [005] 30143.542223: cpu-clock: \n\tffffffff8172dbd7 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b5783b58 [unknown] (/tmp/perf-10939.map)\n\t    7ecef8f2f480 [unknown] ([unknown])\n\njava 11012 [004] 30143.542231: cpu-clock: \n\tffffffff81001408 xen_hypercall_event_channel_op ([kernel.kallsyms])\n\tffffffff81434750 xen_send_IPI_one ([kernel.kallsyms])\n\tffffffff8100fe02 __xen_send_IPI_mask ([kernel.kallsyms])\n\tffffffff8101054e xen_smp_send_call_function_ipi ([kernel.kallsyms])\n\tffffffff810dc471 smp_call_function_many ([kernel.kallsyms])\n\tffffffff8105c8f7 native_flush_tlb_others ([kernel.kallsyms])\n\tffffffff8105cbf6 flush_tlb_page ([kernel.kallsyms])\n\tffffffff8118a5f8 ptep_clear_flush ([kernel.kallsyms])\n\tffffffff81184c0f try_to_unmap_one ([kernel.kallsyms])\n\tffffffff81185d87 try_to_unmap_anon ([kernel.kallsyms])\n\tffffffff81185e4d try_to_unmap ([kernel.kallsyms])\n\tffffffff811a893e migrate_pages ([kernel.kallsyms])\n\tffffffff811a96b4 migrate_misplaced_page ([kernel.kallsyms])\n\tffffffff81178eee do_numa_page ([kernel.kallsyms])\n\tffffffff8117a0bf handle_mm_fault ([kernel.kallsyms])\n\tffffffff8172db74 __do_page_fault ([kernel.kallsyms])\n\tffffffff8172df7a do_page_fault ([kernel.kallsyms])\n\tffffffff8172a3a8 page_fault ([kernel.kallsyms])\n\t    7f08b56bffa1 [unknown] (/tmp/perf-10939.map)\n\t    7f08c880b5c8 [unknown] ([unknown])\n\njava 11020 [006] 30143.542261: cpu-clock: \n\t    7f08b5817290 [unknown] (/tmp/perf-10939.map)\n\nswapper     0 [007] 30143.542288: cpu-clock: \n\tffffffff8104f596 native_safe_halt ([kernel.kallsyms])\n\tffffffff8101caaf default_idle ([kernel.kallsyms])\n\tffffffff8101d376 arch_cpu_idle ([kernel.kallsyms])\n\tffffffff810befa5 cpu_startup_entry ([kernel.kallsyms])\n\tffffffff8104150d start_secondary ([kernel.kallsyms])\n"
  },
  {
    "path": "test/perf-rust-Yamakaky-dcpu.txt",
    "content": "emulator  4152 75695.008865:          1 cycles:u: \n\t             d70 _start+0xffff018fd5dce000 (/usr/lib/ld-2.24.so)\n\nemulator  4152 75695.008879:          1 cycles:u: \n\t             d70 _start+0xffff018fd5dce000 (/usr/lib/ld-2.24.so)\n\nemulator  4152 75695.008886:          3 cycles:u: \n\t             d70 _start+0xffff018fd5dce000 (/usr/lib/ld-2.24.so)\n\nemulator  4152 75695.008892:         16 cycles:u: \n\t             d70 _start+0xffff018fd5dce000 (/usr/lib/ld-2.24.so)\n\nemulator  4152 75695.008898:         98 cycles:u: \n\t             d70 _start+0xffff018fd5dce000 (/usr/lib/ld-2.24.so)\n\nemulator  4152 75695.008904:        597 cycles:u: \n\t             d70 _start+0xffff018fd5dce000 (/usr/lib/ld-2.24.so)\n\nemulator  4152 75695.008912:       3646 cycles:u: \n\t          7d9750 page_fault+0xfe200000 ([kernel.kallsyms])\n\t             d70 _start+0xffff018fd5dce000 (/usr/lib/ld-2.24.so)\n\nemulator  4152 75695.008945:      17736 cycles:u: \n\t            4f4f _dl_start+0xffff018fd5dce3df (/usr/lib/ld-2.24.so)\n\t             d78 _dl_start_user+0xffff018fd5dce000 (/usr/lib/ld-2.24.so)\n\nemulator  4152 75695.009016:      32156 cycles:u: \n\t            7f31 _dl_init_paths+0xffff018fd5dce001 (/usr/lib/ld-2.24.so)\n\t           174ef _dl_sysdep_start+0xffff018fd5dce3df (/usr/lib/ld-2.24.so)\n\t              40 [unknown] ([unknown])\n\nemulator  4152 75695.009206:      42339 cycles:u: \n\t           1654f _dl_load_cache_lookup+0xffff018fd5dce29f (/usr/lib/ld-2.24.so)\n\t            88c0 _dl_map_object+0xffff018fd5dce550 (/usr/lib/ld-2.24.so)\n\nemulator  4152 75695.009539:      44000 cycles:u: \n\t           16387 _dl_load_cache_lookup+0xffff018fd5dce0d7 (/usr/lib/ld-2.24.so)\n\t            88c0 _dl_map_object+0xffff018fd5dce550 (/usr/lib/ld-2.24.so)\n\nemulator  4152 75695.009667:      42632 cycles:u: \n\t           105ae _dl_name_match_p+0xffff018fd5dce01e (/usr/lib/ld-2.24.so)\n\t2e747262696c0036 [unknown] ([unknown])\n\nemulator  4152 75695.009762:      47729 cycles:u: \n\t            b96d _dl_relocate_object+0xffff018fd5dce40d (/usr/lib/ld-2.24.so)\n\t            39b1 dl_main+0xffff018fd5dd0081 (/usr/lib/ld-2.24.so)\n\t           174ef _dl_sysdep_start+0xffff018fd5dce3df (/usr/lib/ld-2.24.so)\n\t              40 [unknown] ([unknown])\n\nemulator  4152 75695.009874:      52068 cycles:u: \n\t           844d7 __strcasecmp+0xffff018fd717a007 (/usr/lib/libc-2.24.so)\n\t            39b1 dl_main+0xffff018fd5dd0081 (/usr/lib/ld-2.24.so)\n\t           174ef _dl_sysdep_start+0xffff018fd5dce3df (/usr/lib/ld-2.24.so)\n\t              40 [unknown] ([unknown])\n\nemulator  4152 75695.010021:      60144 cycles:u: \n\t           196b7 strcmp+0xffff018fd5dce077 (/usr/lib/ld-2.24.so)\n\t63636762696c0036 [unknown] ([unknown])\n\nemulator  4152 75695.010239:      65345 cycles:u: \n\t            b8f2 _dl_relocate_object+0xffff018fd5dce392 (/usr/lib/ld-2.24.so)\n\t            39b1 dl_main+0xffff018fd5dd0081 (/usr/lib/ld-2.24.so)\n\t           174ef _dl_sysdep_start+0xffff018fd5dce3df (/usr/lib/ld-2.24.so)\n\t              40 [unknown] ([unknown])\n\nemulator  4152 75695.010508:      66557 cycles:u: \n\t           dcc45 __GI___readlink+0xffff018fd717a005 (/usr/lib/libc-2.24.so)\n\nemulator  4152 75695.010666:      65964 cycles:u: \n\t          6681e7 je_tcache_boot+0xffff53cc2fce4227 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.010880:      70745 cycles:u: \n\t          7d9750 page_fault+0xfe200000 ([kernel.kallsyms])\n\t          64c156 je_arena_tcache_fill_small+0xffff53cc2fce40b6 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.011165:      72243 cycles:u: \n\t           37315 __GI_____strtoull_l_internal+0xffff018fd717a0f5 (/usr/lib/libc-2.24.so)\n\nemulator  4152 75695.011360:      71141 cycles:u: \n\t          7d9750 page_fault+0xfe200000 ([kernel.kallsyms])\n\t          375990 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4000 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.011556:      73671 cycles:u: \n\t          62e25d std::path::PathBuf::_push::h766d676eb9b04254+0xffff53cc2fce401d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b2eb0 term::terminfo::searcher::get_dbpath_for_term::hffa8fd0e9637bc76+0xffff53cc2fce4820 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ab2 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4042 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c003a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0f93 term::stderr::h99e770fdfcb59b6c+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375a34 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4064 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.011685:      76227 cycles:u: \n\t          38e1c0 _$LT$u8$u20$as$u20$core..clone..Clone$GT$::clone::h7bfab8630dda96cf+0xffff53cc2fce4010 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3849e4 _$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a+0xffff53cc2fce41a4 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          379bd0 collections::vec::from_elem::h0cb09490c5e14fb9+0xffff53cc2fce4080 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38e54d _$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694+0xffff53cc2fce405d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38e637 _$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5+0xffff53cc2fce4057 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1dd3 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4263 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c003a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0f93 term::stderr::h99e770fdfcb59b6c+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375a34 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4064 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.011788:      85066 cycles:u: \n\t          38e1c9 _$LT$u8$u20$as$u20$core..clone..Clone$GT$::clone::h7bfab8630dda96cf+0xffff53cc2fce4019 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3849e4 _$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a+0xffff53cc2fce41a4 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          379bd0 collections::vec::from_elem::h0cb09490c5e14fb9+0xffff53cc2fce4080 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38e54d _$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694+0xffff53cc2fce405d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38e637 _$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5+0xffff53cc2fce4057 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1dd3 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4263 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c003a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0f93 term::stderr::h99e770fdfcb59b6c+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375a34 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4064 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.011900:     100227 cycles:u: \n\t          390da8 core::cmp::impls::_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$usize$GT$::lt::hf4d08bdc2d45569c+0xffff53cc2fce4038 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          394a27 core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40+0xffff53cc2fce4037 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          384985 _$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a+0xffff53cc2fce4145 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          379bd0 collections::vec::from_elem::h0cb09490c5e14fb9+0xffff53cc2fce4080 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38e54d _$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694+0xffff53cc2fce405d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38e637 _$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5+0xffff53cc2fce4057 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1dd3 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4263 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c003a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0f93 term::stderr::h99e770fdfcb59b6c+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375a34 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4064 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.012032:     115539 cycles:u: \n\t          393fec core::ptr::write::haabbb39ab969e5ac+0xffff53cc2fce401c (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          384a01 _$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a+0xffff53cc2fce41c1 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          379bd0 collections::vec::from_elem::h0cb09490c5e14fb9+0xffff53cc2fce4080 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38e54d _$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694+0xffff53cc2fce405d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38e637 _$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5+0xffff53cc2fce4057 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1dd3 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4263 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c003a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0f93 term::stderr::h99e770fdfcb59b6c+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375a34 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4064 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.012182:     128577 cycles:u: \n\t          390870 _$LT$usize$u20$as$u20$core..iter..range..Step$GT$::add_one::h0701a52b56dc0bbb+0xffff53cc2fce4000 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          384985 _$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a+0xffff53cc2fce4145 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          379bd0 collections::vec::from_elem::h0cb09490c5e14fb9+0xffff53cc2fce4080 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38e54d _$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694+0xffff53cc2fce405d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38e637 _$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5+0xffff53cc2fce4057 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1dd3 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4263 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c003a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0f93 term::stderr::h99e770fdfcb59b6c+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375a34 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4064 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.012352:     139193 cycles:u: \n\t          393fe9 core::ptr::write::haabbb39ab969e5ac+0xffff53cc2fce4019 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          384a01 _$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a+0xffff53cc2fce41c1 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          379bd0 collections::vec::from_elem::h0cb09490c5e14fb9+0xffff53cc2fce4080 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38e54d _$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694+0xffff53cc2fce405d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38e637 _$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5+0xffff53cc2fce4057 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1dd3 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4263 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c003a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0f93 term::stderr::h99e770fdfcb59b6c+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375a34 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4064 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.012533:     147440 cycles:u: \n\t          390d93 core::cmp::impls::_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$usize$GT$::lt::hf4d08bdc2d45569c+0xffff53cc2fce4023 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          394a27 core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40+0xffff53cc2fce4037 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          384985 _$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a+0xffff53cc2fce4145 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          379bd0 collections::vec::from_elem::h0cb09490c5e14fb9+0xffff53cc2fce4080 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38e54d _$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694+0xffff53cc2fce405d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38e637 _$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5+0xffff53cc2fce4057 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1dd3 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4263 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c003a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0f93 term::stderr::h99e770fdfcb59b6c+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375a34 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4064 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.012723:     154471 cycles:u: \n\t          38e1cc _$LT$u8$u20$as$u20$core..clone..Clone$GT$::clone::h7bfab8630dda96cf+0xffff53cc2fce401c (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3849e4 _$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a+0xffff53cc2fce41a4 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          379bd0 collections::vec::from_elem::h0cb09490c5e14fb9+0xffff53cc2fce4080 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38e54d _$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694+0xffff53cc2fce405d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38e637 _$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5+0xffff53cc2fce4057 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1dd3 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4263 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c003a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0f93 term::stderr::h99e770fdfcb59b6c+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375a34 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4064 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.012923:     160490 cycles:u: \n\t          3858c0 _$LT$collections..vec..Vec$LT$T$GT$$GT$::set_len::hfd64239413386906+0xffff53cc2fce4000 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          379bd0 collections::vec::from_elem::h0cb09490c5e14fb9+0xffff53cc2fce4080 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38e54d _$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694+0xffff53cc2fce405d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38e637 _$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5+0xffff53cc2fce4057 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1dd3 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4263 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c003a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0f93 term::stderr::h99e770fdfcb59b6c+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375a34 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4064 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.013177:     161094 cycles:u: \n\t          39448e core::str::next_code_point::hc208947b28200a26+0xffff53cc2fce402e (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3abf9d _$LT$core..str..Chars$LT$$u27$a$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h3192360e451206ea+0xffff53cc2fce401d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3ae5f3 _$LT$core..str..CharIndices$LT$$u27$a$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h6d3c2b6db3f8302b+0xffff53cc2fce4043 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37aaff _$LT$core..str..pattern..CharEqSearcher$LT$$u27$a$C$$u20$C$GT$$u20$as$u20$core..str..pattern..Searcher$LT$$u27$a$GT$$GT$::next::hbefb8ac4a49c1d1e+0xffff53cc2fce404f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          39471c core::str::pattern::Searcher::next_match::h3b4c786aa5e821fc+0xffff53cc2fce402c (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37997c _$LT$core..str..pattern..CharSearcher$LT$$u27$a$GT$$u20$as$u20$core..str..pattern..Searcher$LT$$u27$a$GT$$GT$::next_match::ha7c6689628ca2406+0xffff53cc2fce402c (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          39aeb4 _$LT$core..str..SplitInternal$LT$$u27$a$C$$u20$P$GT$$GT$::next::h6ff90db1c517060d+0xffff53cc2fce4074 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3af16c _$LT$core..str..Split$LT$$u27$a$C$$u20$P$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h640ea8ab0b8e51ce+0xffff53cc2fce402c (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3ad6ac _$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h87371dcef7b54f45+0xffff53cc2fce402c (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          384155 _$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::hf30fd19863432c7b+0xffff53cc2fce4065 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b00e7 _$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::he13ccf618f424fa8+0xffff53cc2fce43a7 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          395d3d core::iter::iterator::Iterator::collect::h185e3c12af3fc754+0xffff53cc2fce40ad (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b4d84 term::terminfo::parser::compiled::parse::h0bfa24a8d6483291+0xffff53cc2fce5254 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1e07 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4297 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c003a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0f93 term::stderr::h99e770fdfcb59b6c+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375a34 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4064 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.013402:     160789 cycles:u: \n\t          390d9a core::cmp::impls::_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$usize$GT$::lt::hf4d08bdc2d45569c+0xffff53cc2fce402a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          394a27 core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40+0xffff53cc2fce4037 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3a762f _$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hb223ec6a8effeb5f+0xffff53cc2fce402f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3aeeb8 _$LT$core..iter..FilterMap$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::he1189ac8e3187a50+0xffff53cc2fce4078 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37f201 _$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h2d4f8260955f00a9+0xffff53cc2fce4051 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3a74bf _$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h1191ad8aa35e2822+0xffff53cc2fce402f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37b9e4 _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::h42174e2928c223fa+0xffff53cc2fce4074 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37d93e _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h9375446625dcf9e8+0xffff53cc2fce40fe (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37c35f _$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h72ebd1bc97b2075e+0xffff53cc2fce414f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          395c62 core::iter::iterator::Iterator::collect::h08724396296cdea6+0xffff53cc2fce4062 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b534b term::terminfo::parser::compiled::parse::h0bfa24a8d6483291+0xffff53cc2fce581b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1e07 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4297 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c003a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0f93 term::stderr::h99e770fdfcb59b6c+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375a34 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4064 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.013613:     163021 cycles:u: \n\t          39f09a _$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..DerefMut$GT$::deref_mut::h1489b09ee24485ec+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          383da1 _$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f+0xffff53cc2fce4181 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3afc1e _$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725+0xffff53cc2fce429e (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37c744 _$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a+0xffff53cc2fce4144 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          395eca core::iter::iterator::Iterator::collect::h53b7863e73fadbfc+0xffff53cc2fce405a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b55c6 term::terminfo::parser::compiled::parse::h0bfa24a8d6483291+0xffff53cc2fce5a96 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1e07 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4297 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c003a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0f93 term::stderr::h99e770fdfcb59b6c+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375a34 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4064 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.013829:     166807 cycles:u: \n\t          396798 core::slice::from_raw_parts::hf2d070766f9033b0+0xffff53cc2fce4038 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          396c58 core::slice::_$LT$impl$u20$core..ops..Index$LT$core..ops..Range$LT$usize$GT$$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index::h4d1325c39b2e2225+0xffff53cc2fce40e8 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          396ce8 core::slice::_$LT$impl$u20$core..ops..Index$LT$core..ops..RangeTo$LT$usize$GT$$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index::h9c7a1847e7ff452a+0xffff53cc2fce4068 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          39a093 _$LT$$u5b$T$u5d$$u20$as$u20$core..slice..SliceExt$GT$::split_at::h80c52dadb70c5280+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37a36c collections::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::split_at::h9377899ac1bb5027+0xffff53cc2fce404c (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38bb4a std::io::impls::_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u27$a$u20$$u5b$u8$u5d$$GT$::read::he880dac0905a777b+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          39fec8 _$LT$std..io..buffered..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$::read::h0092352920edf903+0xffff53cc2fce4238 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b3682 term::terminfo::parser::compiled::read_le_u16::hd7bae50659ca04c4+0xffff53cc2fce4112 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c28e2 term::terminfo::parser::compiled::parse::_$u7b$$u7b$closure$u7d$$u7d$::h503fb3ffeae6899e+0xffff53cc2fce4032 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3935ff core::ops::impls::_$LT$impl$u20$core..ops..FnOnce$LT$A$GT$$u20$for$u20$$RF$$u27$a$u20$mut$u20$F$GT$::call_once::h493b1835d917190a+0xffff53cc2fce403f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          380880 _$LT$core..option..Option$LT$T$GT$$GT$::map::h0de7409612e0b28e+0xffff53cc2fce4100 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3ad654 _$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5837a103f73c01d4+0xffff53cc2fce4044 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37fd40 _$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc915775adb42698d+0xffff53cc2fce4040 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3a7560 _$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h507e8ba941b3616a+0xffff53cc2fce4020 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          383c54 _$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f+0xffff53cc2fce4034 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3afc1e _$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725+0xffff53cc2fce429e (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37c744 _$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a+0xffff53cc2fce4144 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          395eca core::iter::iterator::Iterator::collect::h53b7863e73fadbfc+0xffff53cc2fce405a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b55c6 term::terminfo::parser::compiled::parse::h0bfa24a8d6483291+0xffff53cc2fce5a96 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1e07 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4297 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c003a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0f93 term::stderr::h99e770fdfcb59b6c+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375a34 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4064 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.014045:     170071 cycles:u: \n\t          3996a8 _$LT$$u5b$T$u5d$$u20$as$u20$core..slice..SliceExt$GT$::get_unchecked_mut::h49fa6b2e956b2ceb+0xffff53cc2fce4018 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          379f7d collections::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::get_unchecked_mut::hecb03b761e9b7d9e+0xffff53cc2fce403d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          383dc8 _$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f+0xffff53cc2fce41a8 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3afc1e _$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725+0xffff53cc2fce429e (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37c744 _$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a+0xffff53cc2fce4144 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          395eca core::iter::iterator::Iterator::collect::h53b7863e73fadbfc+0xffff53cc2fce405a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b55c6 term::terminfo::parser::compiled::parse::h0bfa24a8d6483291+0xffff53cc2fce5a96 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1e07 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4297 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c003a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0f93 term::stderr::h99e770fdfcb59b6c+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375a34 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4064 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.014265:     173377 cycles:u: \n\t          64db3d je_arena_ralloc_no_move+0xffff53cc2fce40ed (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.014492:     176362 cycles:u: \n\t          393920 core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::is_null::h0535f15cf1003af9+0xffff53cc2fce4010 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          39f13a _$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..DerefMut$GT$::deref_mut::hb94ba71a1dd47d71+0xffff53cc2fce402a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          385a6d _$LT$collections..vec..Vec$LT$T$GT$$GT$::truncate::h2f857c8801e6ea48+0xffff53cc2fce405d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38a406 std::io::read_to_end::heeed5f53db31e2d5+0xffff53cc2fce4336 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38abdc std::io::Read::read_to_end::hf3e43392e443d646+0xffff53cc2fce403c (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b57bd term::terminfo::parser::compiled::parse::h0bfa24a8d6483291+0xffff53cc2fce5c8d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1e07 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4297 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c003a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0f93 term::stderr::h99e770fdfcb59b6c+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375a34 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4064 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.014727:     178602 cycles:u: \n\t          37d420 _$LT$std..collections..hash..table..FullBucket$LT$K$C$$u20$V$C$$u20$M$GT$$u20$as$u20$std..collections..hash..table..Put$LT$K$C$$u20$V$GT$$GT$::borrow_table_mut::h7b43ee0d3891fd5f+0xffff53cc2fce4000 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3860b5 std::collections::hash::map::robin_hood::h47885a7d58732a87+0xffff53cc2fce4625 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3ac4da _$LT$std..collections..hash..map..VacantEntry$LT$$u27$a$C$$u20$K$C$$u20$V$GT$$GT$::insert::h9082baf2d93a92c8+0xffff53cc2fce41ca (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3a0ce2 _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_nocheck::h980e74df27f75c7d+0xffff53cc2fce43d2 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3a293c _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7+0xffff53cc2fce417c (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37bd1d _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11+0xffff53cc2fce417d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37d59e _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33+0xffff53cc2fce40fe (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37cb8b _$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8+0xffff53cc2fce41bb (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          395e27 core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490+0xffff53cc2fce40a7 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b59e9 term::terminfo::parser::compiled::parse::h0bfa24a8d6483291+0xffff53cc2fce5eb9 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1e07 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4297 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c003a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0f93 term::stderr::h99e770fdfcb59b6c+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375a34 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4064 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.014972:     180014 cycles:u: \n\t           83d96 __memmove_sse2_unaligned_erms+0xffff018fd717a096 (/usr/lib/libc-2.24.so)\n\t          3a3cc0 _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::resize::h995383f95c6d03bf+0xffff53cc2fce4700 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3a4a70 _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::reserve::h5970cef3fb225dd7+0xffff53cc2fce40f0 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3a28c3 _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7+0xffff53cc2fce4103 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37bd1d _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11+0xffff53cc2fce417d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37d59e _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33+0xffff53cc2fce40fe (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37cb8b _$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8+0xffff53cc2fce41bb (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          395e27 core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490+0xffff53cc2fce40a7 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b59e9 term::terminfo::parser::compiled::parse::h0bfa24a8d6483291+0xffff53cc2fce5eb9 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1e07 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4297 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c003a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0f93 term::stderr::h99e770fdfcb59b6c+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375a34 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4064 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.015205:     180495 cycles:u: \n\t          38837d std::collections::hash::map::search_hashed::hae33740b510f48a0+0xffff53cc2fce416d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3a0a4b _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_nocheck::h980e74df27f75c7d+0xffff53cc2fce413b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3a293c _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7+0xffff53cc2fce417c (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37bd1d _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11+0xffff53cc2fce417d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37d59e _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33+0xffff53cc2fce40fe (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37cb8b _$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8+0xffff53cc2fce41bb (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          395e27 core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490+0xffff53cc2fce40a7 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b59e9 term::terminfo::parser::compiled::parse::h0bfa24a8d6483291+0xffff53cc2fce5eb9 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1e07 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4297 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c003a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0f93 term::stderr::h99e770fdfcb59b6c+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375a34 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4064 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.015439:     182088 cycles:u: \n\t          3960c1 core::iter::iterator::Iterator::position::h71611bea69605be3+0xffff53cc2fce4131 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2c35 term::terminfo::parser::compiled::parse::_$u7b$$u7b$closure$u7d$$u7d$::hf95a5d0239e6304e+0xffff53cc2fce42c5 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          39375f core::ops::impls::_$LT$impl$u20$core..ops..FnOnce$LT$A$GT$$u20$for$u20$$RF$$u27$a$u20$mut$u20$F$GT$::call_once::ha8cdcc06344fe1b5+0xffff53cc2fce404f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          381abb _$LT$core..option..Option$LT$T$GT$$GT$::map::hbf38c6908f07f125+0xffff53cc2fce414b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3ad7a4 _$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc8817fc039bbb0b3+0xffff53cc2fce4044 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37f5a4 _$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5c98bd2640d176d7+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3a75af _$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h7e7c4b3a79f55d8f+0xffff53cc2fce402f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37bc17 _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11+0xffff53cc2fce4077 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37d59e _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33+0xffff53cc2fce40fe (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37cb8b _$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8+0xffff53cc2fce41bb (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          395e27 core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490+0xffff53cc2fce40a7 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b59e9 term::terminfo::parser::compiled::parse::h0bfa24a8d6483291+0xffff53cc2fce5eb9 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1e07 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4297 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c003a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0f93 term::stderr::h99e770fdfcb59b6c+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375a34 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4064 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.015682:     183668 cycles:u: \n\t          3a19ba _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_ordered::h7b9d42bf7a5f0d35+0xffff53cc2fce407a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3a3c2e _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::resize::h995383f95c6d03bf+0xffff53cc2fce466e (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3a4a70 _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::reserve::h5970cef3fb225dd7+0xffff53cc2fce40f0 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3a28c3 _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7+0xffff53cc2fce4103 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37bd1d _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11+0xffff53cc2fce417d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37d59e _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33+0xffff53cc2fce40fe (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37cb8b _$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8+0xffff53cc2fce41bb (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          395e27 core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490+0xffff53cc2fce40a7 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b59e9 term::terminfo::parser::compiled::parse::h0bfa24a8d6483291+0xffff53cc2fce5eb9 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1e07 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4297 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c003a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0f93 term::stderr::h99e770fdfcb59b6c+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375a34 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4064 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.015920:     184354 cycles:u: \n\t          393c78 core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::offset::hffec494e9fc99daf+0xffff53cc2fce4028 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3af497 _$LT$core..slice..Iter$LT$$u27$a$C$$u20$T$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::ha5ae786e76ac1132+0xffff53cc2fce40c7 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3a7480 _$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h01cfe524df2e1837+0xffff53cc2fce4020 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3abf38 _$LT$core..iter..Enumerate$LT$I$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h6382d5064d2f104a+0xffff53cc2fce4028 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          396032 core::iter::iterator::Iterator::position::h71611bea69605be3+0xffff53cc2fce40a2 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2c35 term::terminfo::parser::compiled::parse::_$u7b$$u7b$closure$u7d$$u7d$::hf95a5d0239e6304e+0xffff53cc2fce42c5 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          39375f core::ops::impls::_$LT$impl$u20$core..ops..FnOnce$LT$A$GT$$u20$for$u20$$RF$$u27$a$u20$mut$u20$F$GT$::call_once::ha8cdcc06344fe1b5+0xffff53cc2fce404f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          381abb _$LT$core..option..Option$LT$T$GT$$GT$::map::hbf38c6908f07f125+0xffff53cc2fce414b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3ad7a4 _$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc8817fc039bbb0b3+0xffff53cc2fce4044 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37f5a4 _$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5c98bd2640d176d7+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3a75af _$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h7e7c4b3a79f55d8f+0xffff53cc2fce402f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37bc17 _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11+0xffff53cc2fce4077 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37d59e _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33+0xffff53cc2fce40fe (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37cb8b _$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8+0xffff53cc2fce41bb (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          395e27 core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490+0xffff53cc2fce40a7 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b59e9 term::terminfo::parser::compiled::parse::h0bfa24a8d6483291+0xffff53cc2fce5eb9 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1e07 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4297 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c003a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0f93 term::stderr::h99e770fdfcb59b6c+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375a34 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4064 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.016158:     185542 cycles:u: \n\t          39b78f _$LT$$RF$$u27$a$u20$mut$u20$T$u20$as$u20$core..ops..Deref$GT$::deref::h9629b61700da8d48+0xffff53cc2fce401f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          379734 _$LT$std..collections..hash..table..FullBucket$LT$K$C$$u20$V$C$$u20$M$GT$$u20$as$u20$core..ops..Deref$GT$::deref::hf5640e419faf6aa3+0xffff53cc2fce4024 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3a8424 _$LT$std..collections..hash..table..FullBucket$LT$K$C$$u20$V$C$$u20$M$GT$$GT$::displacement::h23649dceee14681b+0xffff53cc2fce4074 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          385cb7 std::collections::hash::map::robin_hood::h47885a7d58732a87+0xffff53cc2fce4227 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3ac4da _$LT$std..collections..hash..map..VacantEntry$LT$$u27$a$C$$u20$K$C$$u20$V$GT$$GT$::insert::h9082baf2d93a92c8+0xffff53cc2fce41ca (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3a0ce2 _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_nocheck::h980e74df27f75c7d+0xffff53cc2fce43d2 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3a293c _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7+0xffff53cc2fce417c (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37bd1d _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11+0xffff53cc2fce417d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37d59e _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33+0xffff53cc2fce40fe (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37cb8b _$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8+0xffff53cc2fce41bb (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          395e27 core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490+0xffff53cc2fce40a7 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b59e9 term::terminfo::parser::compiled::parse::h0bfa24a8d6483291+0xffff53cc2fce5eb9 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1e07 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4297 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c003a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0f93 term::stderr::h99e770fdfcb59b6c+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375a34 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4064 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.016398:     186650 cycles:u: \n\t          3814d0 _$LT$core..option..Option$LT$T$GT$$GT$::map::h4d3efd64a17eb7e4+0xffff53cc2fce4140 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3abee0 _$LT$core..iter..Enumerate$LT$I$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h503f07e91a8c70cc+0xffff53cc2fce4060 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3a771f _$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hf6d2c4c5538b1320+0xffff53cc2fce402f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3ae389 _$LT$core..iter..Filter$LT$I$C$$u20$P$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc46470b5838977c4+0xffff53cc2fce4069 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3ad78c _$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc8817fc039bbb0b3+0xffff53cc2fce402c (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37f5a4 _$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5c98bd2640d176d7+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3a75af _$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h7e7c4b3a79f55d8f+0xffff53cc2fce402f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37bc17 _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11+0xffff53cc2fce4077 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37d59e _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33+0xffff53cc2fce40fe (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37cb8b _$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8+0xffff53cc2fce41bb (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          395e27 core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490+0xffff53cc2fce40a7 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b59e9 term::terminfo::parser::compiled::parse::h0bfa24a8d6483291+0xffff53cc2fce5eb9 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1e07 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4297 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c003a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0f93 term::stderr::h99e770fdfcb59b6c+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375a34 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4064 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.016703:     187543 cycles:u: \n\t          394a2d core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40+0xffff53cc2fce403d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          384985 _$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a+0xffff53cc2fce4145 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          379bd0 collections::vec::from_elem::h0cb09490c5e14fb9+0xffff53cc2fce4080 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38e54d _$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694+0xffff53cc2fce405d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38e637 _$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5+0xffff53cc2fce4057 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1dd3 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4263 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3bff3a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0ee3 term::stdout::hc71a921b9549a869+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375b58 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4188 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.016947:     183381 cycles:u: \n\t          38e1cc _$LT$u8$u20$as$u20$core..clone..Clone$GT$::clone::h7bfab8630dda96cf+0xffff53cc2fce401c (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3849e4 _$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a+0xffff53cc2fce41a4 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          379bd0 collections::vec::from_elem::h0cb09490c5e14fb9+0xffff53cc2fce4080 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38e54d _$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694+0xffff53cc2fce405d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38e637 _$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5+0xffff53cc2fce4057 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1dd3 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4263 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3bff3a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0ee3 term::stdout::hc71a921b9549a869+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375b58 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4188 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.017182:     183868 cycles:u: \n\t          3922ce core::mem::swap::hcb834a1162e5ad6c+0xffff53cc2fce404e (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          394a77 core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40+0xffff53cc2fce4087 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          384985 _$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a+0xffff53cc2fce4145 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          379bd0 collections::vec::from_elem::h0cb09490c5e14fb9+0xffff53cc2fce4080 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38e54d _$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694+0xffff53cc2fce405d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38e637 _$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5+0xffff53cc2fce4057 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1dd3 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4263 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3bff3a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0ee3 term::stdout::hc71a921b9549a869+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375b58 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4188 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.017418:     185267 cycles:u: \n\t          394a2a core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40+0xffff53cc2fce403a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          384985 _$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a+0xffff53cc2fce4145 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          379bd0 collections::vec::from_elem::h0cb09490c5e14fb9+0xffff53cc2fce4080 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38e54d _$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694+0xffff53cc2fce405d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38e637 _$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5+0xffff53cc2fce4057 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1dd3 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4263 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3bff3a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0ee3 term::stdout::hc71a921b9549a869+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375b58 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4188 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.017651:     186625 cycles:u: \n\t          394a2d core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40+0xffff53cc2fce403d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          384985 _$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a+0xffff53cc2fce4145 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          379bd0 collections::vec::from_elem::h0cb09490c5e14fb9+0xffff53cc2fce4080 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38e54d _$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694+0xffff53cc2fce405d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38e637 _$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5+0xffff53cc2fce4057 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1dd3 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4263 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3bff3a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0ee3 term::stdout::hc71a921b9549a869+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375b58 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4188 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.017847:     188406 cycles:u: \n\t          390da3 core::cmp::impls::_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$usize$GT$::lt::hf4d08bdc2d45569c+0xffff53cc2fce4033 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          394a27 core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40+0xffff53cc2fce4037 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          384985 _$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a+0xffff53cc2fce4145 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          379bd0 collections::vec::from_elem::h0cb09490c5e14fb9+0xffff53cc2fce4080 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38e54d _$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694+0xffff53cc2fce405d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38e637 _$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5+0xffff53cc2fce4057 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1dd3 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4263 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3bff3a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0ee3 term::stdout::hc71a921b9549a869+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375b58 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4188 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.018094:     194816 cycles:u: \n\t          39330f core::num::_$LT$impl$u20$usize$GT$::overflowing_add::h4bf465fac5e6d437+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          389868 std::collections::hash::table::calculate_offsets::hfe569e8904133a1b+0xffff53cc2fce4068 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          39c714 _$LT$std..collections..hash..table..RawTable$LT$K$C$$u20$V$GT$$GT$::first_bucket_raw::hb9d07d7e2fb8d059+0xffff53cc2fce40f4 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3a6bd5 _$LT$std..collections..hash..table..Bucket$LT$K$C$$u20$V$C$$u20$M$GT$$GT$::at_index::h34ab787a9a6009ea+0xffff53cc2fce40c5 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3a50cf _$LT$std..collections..hash..table..Bucket$LT$K$C$$u20$V$C$$u20$M$GT$$GT$::new::h610d20a99611ae46+0xffff53cc2fce408f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          388a7b std::collections::hash::map::search_hashed::hb56562c80a350a98+0xffff53cc2fce415b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3a10ba _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_nocheck::h98844db7b829b7c9+0xffff53cc2fce410a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3a2c3c _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::hcb451fe86918197e+0xffff53cc2fce411c (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37b86e _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::h0c6331f8890ff8d7+0xffff53cc2fce413e (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37d76e _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h84d1c44a62ed8a23+0xffff53cc2fce40fe (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37bf6f _$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h16fe3c65a4c16e46+0xffff53cc2fce414f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          395f62 core::iter::iterator::Iterator::collect::h6ce9ad9125cfc58e+0xffff53cc2fce4062 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b4fa7 term::terminfo::parser::compiled::parse::h0bfa24a8d6483291+0xffff53cc2fce5477 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1e07 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4297 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3bff3a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0ee3 term::stdout::hc71a921b9549a869+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375b58 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4188 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.018353:     195165 cycles:u: \n\t          3966b8 core::slice::_$LT$impl$u20$core..ops..IndexMut$LT$core..ops..RangeFrom$LT$usize$GT$$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index_mut::hc2a47196a9b3dc9f+0xffff53cc2fce4058 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b364a term::terminfo::parser::compiled::read_le_u16::hd7bae50659ca04c4+0xffff53cc2fce40da (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c28e2 term::terminfo::parser::compiled::parse::_$u7b$$u7b$closure$u7d$$u7d$::h503fb3ffeae6899e+0xffff53cc2fce4032 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3935ff core::ops::impls::_$LT$impl$u20$core..ops..FnOnce$LT$A$GT$$u20$for$u20$$RF$$u27$a$u20$mut$u20$F$GT$::call_once::h493b1835d917190a+0xffff53cc2fce403f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          380880 _$LT$core..option..Option$LT$T$GT$$GT$::map::h0de7409612e0b28e+0xffff53cc2fce4100 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3ad654 _$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5837a103f73c01d4+0xffff53cc2fce4044 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37fd40 _$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc915775adb42698d+0xffff53cc2fce4040 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3a7560 _$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h507e8ba941b3616a+0xffff53cc2fce4020 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          383c54 _$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f+0xffff53cc2fce4034 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3afc1e _$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725+0xffff53cc2fce429e (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37c744 _$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a+0xffff53cc2fce4144 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          395eca core::iter::iterator::Iterator::collect::h53b7863e73fadbfc+0xffff53cc2fce405a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b55c6 term::terminfo::parser::compiled::parse::h0bfa24a8d6483291+0xffff53cc2fce5a96 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1e07 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4297 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3bff3a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0ee3 term::stdout::hc71a921b9549a869+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375b58 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4188 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.018605:     194314 cycles:u: \n\t          385888 _$LT$collections..vec..Vec$LT$T$GT$$GT$::set_len::h32f778ca25724bf1+0xffff53cc2fce4028 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          383dfa _$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f+0xffff53cc2fce41da (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3afc1e _$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725+0xffff53cc2fce429e (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37c744 _$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a+0xffff53cc2fce4144 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          395eca core::iter::iterator::Iterator::collect::h53b7863e73fadbfc+0xffff53cc2fce405a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b55c6 term::terminfo::parser::compiled::parse::h0bfa24a8d6483291+0xffff53cc2fce5a96 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1e07 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4297 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3bff3a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0ee3 term::stdout::hc71a921b9549a869+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375b58 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4188 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.018855:     194076 cycles:u: \n\t          39f075 _$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..DerefMut$GT$::deref_mut::h1489b09ee24485ec+0xffff53cc2fce4025 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          383da1 _$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f+0xffff53cc2fce4181 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3afc1e _$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725+0xffff53cc2fce429e (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37c744 _$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a+0xffff53cc2fce4144 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          395eca core::iter::iterator::Iterator::collect::h53b7863e73fadbfc+0xffff53cc2fce405a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b55c6 term::terminfo::parser::compiled::parse::h0bfa24a8d6483291+0xffff53cc2fce5a96 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1e07 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4297 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3bff3a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0ee3 term::stdout::hc71a921b9549a869+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375b58 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4188 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.019105:     194077 cycles:u: \n\t          3938bc core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::offset::h83331dc01d57b6ff+0xffff53cc2fce402c (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          384914 _$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a+0xffff53cc2fce40d4 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38575a _$LT$collections..vec..Vec$LT$T$GT$$GT$::resize::h33edb9dae7314c90+0xffff53cc2fce408a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38a1ae std::io::read_to_end::heeed5f53db31e2d5+0xffff53cc2fce40de (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          38abdc std::io::Read::read_to_end::hf3e43392e443d646+0xffff53cc2fce403c (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b57bd term::terminfo::parser::compiled::parse::h0bfa24a8d6483291+0xffff53cc2fce5c8d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1e07 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4297 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3bff3a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0ee3 term::stdout::hc71a921b9549a869+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375b58 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4188 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\nemulator  4152 75695.019356:     194103 cycles:u: \n\t          392f34 core::num::_$LT$impl$u20$u64$GT$::wrapping_add::h021932e4ee83e791+0xffff53cc2fce4034 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          39e93a _$LT$core..hash..sip..Sip13Rounds$u20$as$u20$core..hash..sip..Sip$GT$::d_rounds::hae93b8d08d9c9a13+0xffff53cc2fce434a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          39fc6e _$LT$core..hash..sip..Hasher$LT$S$GT$$u20$as$u20$core..hash..Hasher$GT$::finish::ha781266cba0e4a7c+0xffff53cc2fce40ae (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          39dd3d _$LT$core..hash..sip..SipHasher13$u20$as$u20$core..hash..Hasher$GT$::finish::h73025af53645a0f3+0xffff53cc2fce401d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3ac04d _$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::finish::h2c804330acc776d7+0xffff53cc2fce401d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          389a32 std::collections::hash::table::make_hash::h9f03ce4a8d5d1b78+0xffff53cc2fce4072 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3a4d4d _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::make_hash::h992d9241b64fceb7+0xffff53cc2fce402d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3a285f _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7+0xffff53cc2fce409f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37bd1d _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11+0xffff53cc2fce417d (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37d59e _$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33+0xffff53cc2fce40fe (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37cb8b _$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8+0xffff53cc2fce41bb (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          395e27 core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490+0xffff53cc2fce40a7 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b59e9 term::terminfo::parser::compiled::parse::h0bfa24a8d6483291+0xffff53cc2fce5eb9 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1e07 term::terminfo::TermInfo::_from_path::h51064971a80093cd+0xffff53cc2fce4297 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1b54 term::terminfo::TermInfo::from_path::hc007f27f9c5301db+0xffff53cc2fce4054 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c2837 term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0+0xffff53cc2fce4047 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3906d1 _$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b+0xffff53cc2fce4161 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b1ae3 term::terminfo::TermInfo::from_name::h721edfed0d4e6840+0xffff53cc2fce4073 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3b17e6 term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d+0xffff53cc2fce4186 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3bff3a _$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3c0ee3 term::stdout::hc71a921b9549a869+0xffff53cc2fce4053 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          375b58 simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f+0xffff53cc2fce4188 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3788ea simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f+0xffff53cc2fce404a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37883b log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727+0xffff53cc2fce402b (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          37209a log::set_logger_raw::h2040ab7e0793ea3f+0xffff53cc2fce409a (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          371fc0 log::set_logger::hfce3bfc5d262a203+0xffff53cc2fce4030 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          3759b9 simplelog::termlog::TermLogger::init::ha7463b1622ff979e+0xffff53cc2fce4029 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           61223 emulator::main_ret::hc4b7fa9090639ebe+0xffff53cc2fce40c3 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t           6351f emulator::main::hc2aaa9b4591a10c7+0xffff53cc2fce400f (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\t          63c477 __rust_maybe_catch_panic+0xffff53cc2fce4017 (/home/yamakaky/dev/rust/dcpu/target/debug/emulator)\n\n"
  },
  {
    "path": "test/perf-vertx-stacks-01.txt",
    "content": "# ========\n# captured on: Thu Dec  4 18:23:53 2014\n# hostname : bgregg-test\n# os release : 3.2.0-54-virtual\n# perf version : 3.2.50\n# arch : x86_64\n# nrcpus online : 16\n# nrcpus avail : 16\n# cpudesc : Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz\n# cpuid : GenuineIntel,6,62,4\n# total memory : 30759060 kB\n# cmdline : /usr/bin/perf_3.2.0-54 record -F 99 -p 3236 -g\n# event : name = cycles, type = 1, config = 0x0, config1 = 0x0, config2 = 0x0, excl_usr = 0, excl_kern = 0, id = { 15078, 15079, 15080, 15081, 15082, 15083, 15084, 15085, 15086, 15087, 15088, 15089, 15090, 15091, 15092, 15093, 15094, 15095, 15096, 15097, 15098, 15099, 15100, 15101, 15102, 15103, 15104, 15105, 15106, 15107, 15108, 15109, 15110, 15111, 15112, 15113, 15114, 15115 }\n# HEADER_CPU_TOPOLOGY info available, use -I to display\n# HEADER_NUMA_TOPOLOGY info available, use -I to display\n# ========\n#\njava  3244 cpu-clock: \n\t    7f1e214c24d9 SpinPause (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2162ad6f StealTask::do_it(GCTaskManager*, unsigned int) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2130d999 GCTaskThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3245 cpu-clock: \n\t    7f1e216ccd20 ParallelTaskTerminator::offer_termination(TerminatorTerminator*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2162ad6f StealTask::do_it(GCTaskManager*, unsigned int) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2130d999 GCTaskThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3245 cpu-clock: \n\t    7f1e214c24d2 SpinPause (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2162ad6f StealTask::do_it(GCTaskManager*, unsigned int) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2130d999 GCTaskThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3246 cpu-clock: \n\t    7f1e216ccd20 ParallelTaskTerminator::offer_termination(TerminatorTerminator*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2162ad6f StealTask::do_it(GCTaskManager*, unsigned int) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2130d999 GCTaskThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3247 cpu-clock: \n\t    7f1e2162aff4 PSScavengeKlassClosure::do_klass(Klass*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e211dbf0c ClassLoaderData::oops_do(OopClosure*, KlassClosure*, bool) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e211dd6c9 ClassLoaderDataGraph::oops_do(OopClosure*, KlassClosure*, bool) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2162aad8 ScavengeRootsTask::do_it(GCTaskManager*, unsigned int) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2130d999 GCTaskThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3248 cpu-clock: \n\t    7f1e214c24d0 SpinPause (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2162ad6f StealTask::do_it(GCTaskManager*, unsigned int) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2130d999 GCTaskThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3249 cpu-clock: \n\t    7f1e214c24d2 SpinPause (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2162ad6f StealTask::do_it(GCTaskManager*, unsigned int) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2130d999 GCTaskThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3250 cpu-clock: \n\t    7f1e2137bbed InstanceKlass::oop_push_contents(PSPromotionManager*, oopDesc*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21627a75 oopDesc* PSPromotionManager::copy_to_survivor_space<false>(oopDesc*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21627328 PSPromotionManager::drain_stacks_depth(bool) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2162ac0e StealTask::do_it(GCTaskManager*, unsigned int) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2130d999 GCTaskThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3251 cpu-clock: \n\t    7f1e214c24d0 SpinPause (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2162ad6f StealTask::do_it(GCTaskManager*, unsigned int) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2130d999 GCTaskThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3252 cpu-clock: \n\t    7f1e214c24d2 SpinPause (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2162ad6f StealTask::do_it(GCTaskManager*, unsigned int) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2130d999 GCTaskThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3253 cpu-clock: \n\t    7f1e216ccd20 ParallelTaskTerminator::offer_termination(TerminatorTerminator*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2162ad6f StealTask::do_it(GCTaskManager*, unsigned int) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2130d999 GCTaskThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3254 cpu-clock: \n\t    7f1e216ccd20 ParallelTaskTerminator::offer_termination(TerminatorTerminator*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2162ad6f StealTask::do_it(GCTaskManager*, unsigned int) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2130d999 GCTaskThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3255 cpu-clock: \n\t    7f1e214c24d9 SpinPause (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2162ad6f StealTask::do_it(GCTaskManager*, unsigned int) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2130d999 GCTaskThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3256 cpu-clock: \n\t    7f1e216ccd23 ParallelTaskTerminator::offer_termination(TerminatorTerminator*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2162ad6f StealTask::do_it(GCTaskManager*, unsigned int) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2130d999 GCTaskThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3257 cpu-clock: \n\tffffffff8109ea1a futex_wake_op ([kernel.kallsyms])\n\tffffffff810a012e do_futex ([kernel.kallsyms])\n\tffffffff810a02f2 sys_futex ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e21c46565 pthread_cond_signal@@GLIBC_2.3.2 (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\t    7f1e21629971 PSScavenge::invoke_no_policy() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21629fa3 PSScavenge::invoke() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215e56cd ParallelScavengeHeap::failed_mem_allocate(unsigned long) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2174b610 VM_ParallelGCFailedAllocation::doit() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2174fe12 VM_Operation::evaluate() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2174e537 VMThread::evaluate_operation(VM_Operation*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2174eb96 VMThread::loop() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2174f002 VMThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3257 cpu-clock: \n\t    7f1e216c0611 StringTable::unlink_or_oops_do(BoolObjectClosure*, OopClosure*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2162943a PSScavenge::invoke_no_policy() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21629fa3 PSScavenge::invoke() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215e56cd ParallelScavengeHeap::failed_mem_allocate(unsigned long) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2174b610 VM_ParallelGCFailedAllocation::doit() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2174fe12 VM_Operation::evaluate() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2174e537 VMThread::evaluate_operation(VM_Operation*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2174eb96 VMThread::loop() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2174f002 VMThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3257 cpu-clock: \n\t    7f1e2162a2f7 PSIsAliveClosure::do_object_b(oopDesc*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2162943a PSScavenge::invoke_no_policy() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21629fa3 PSScavenge::invoke() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215e56cd ParallelScavengeHeap::failed_mem_allocate(unsigned long) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2174b610 VM_ParallelGCFailedAllocation::doit() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2174fe12 VM_Operation::evaluate() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2174e537 VMThread::evaluate_operation(VM_Operation*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2174eb96 VMThread::loop() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2174f002 VMThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3257 cpu-clock: \n\t    7f1e216c05e0 StringTable::unlink_or_oops_do(BoolObjectClosure*, OopClosure*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2162943a PSScavenge::invoke_no_policy() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21629fa3 PSScavenge::invoke() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215e56cd ParallelScavengeHeap::failed_mem_allocate(unsigned long) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2174b610 VM_ParallelGCFailedAllocation::doit() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2174fe12 VM_Operation::evaluate() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2174e537 VMThread::evaluate_operation(VM_Operation*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2174eb96 VMThread::loop() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2174f002 VMThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0feb7963 Lio/netty/handler/codec/http/HttpObjectDecoder;.splitHeader(Lio/netty/util/internal/AppendableCharS (/tmp/perf-3236.map)\n\t    7f1e0df12508 Lio/netty/handler/codec/http/HttpObjectDecoder;.readHeaders(Lio/netty/buffer/ByteBuf;)Lio/netty/han (/tmp/perf-3236.map)\n\t    7f1e106aaac0 Lio/netty/handler/codec/http/HttpObjectDecoder;.decode(Lio/netty/channel/ChannelHandlerContext;Lio/ (/tmp/perf-3236.map)\n\t    7f1e0e78b758 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cda8edf Lorg/mozilla/javascript/IdScriptableObject;.setAttributes(Ljava/lang/String;I)V (/tmp/perf-3236.map)\n\t    7f1e10405a2c Lorg/mozilla/javascript/ScriptRuntime;.createFunctionActivation(Lorg/mozilla/javascript/NativeFunct (/tmp/perf-3236.map)\n\t    7f1e0cd21ad0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff81178f01 fget_light ([kernel.kallsyms])\n\tffffffff81177928 sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8158a5f1 tcp_event_data_recv ([kernel.kallsyms])\n\tffffffff815978df tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81599231 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8153dae1 netif_skb_features ([kernel.kallsyms])\n\tffffffff8154310a dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d4f49f2 Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0f096c6c Lorg/mozilla/javascript/IdScriptableObject;.has(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cd9742c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0f096c52 Lorg/mozilla/javascript/IdScriptableObject;.has(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cd96fd0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8100122a hypercall_page ([kernel.kallsyms])\n\tffffffff8100aca2 check_events ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff81540677 __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff81177901 sys_write ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8157a421 ip_output ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e10405b02 Lorg/mozilla/javascript/ScriptRuntime;.createFunctionActivation(Lorg/mozilla/javascript/NativeFunct (/tmp/perf-3236.map)\n\t    7f1e0d792b3c Lorg/mozilla/javascript/optimizer/OptRuntime;.call2(Lorg/mozilla/javascript/Callable;Lorg/mozilla/j (/tmp/perf-3236.map)\n\t    7f1e0cd22658 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cda9c4c Lorg/mozilla/javascript/NativeFunction;.initScriptFunction(Lorg/mozilla/javascript/Context;Lorg/moz (/tmp/perf-3236.map)\n\t    7f1e0d7931dc Lorg/mozilla/javascript/optimizer/OptRuntime;.call2(Lorg/mozilla/javascript/Callable;Lorg/mozilla/j (/tmp/perf-3236.map)\n\t    7f1e0cd22658 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd7efc0 Lorg/mozilla/javascript/IdScriptableObject;.get(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cd225a4 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8153c93b dev_queue_xmit_nit ([kernel.kallsyms])\n\tffffffff81542985 dev_hard_start_xmit ([kernel.kallsyms])\n\tffffffff8154310a dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff81177871 sys_read ([kernel.kallsyms])\n\t    7f1e22141f1d read (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e0d8c180b Lsun/nio/ch/FileDispatcherImpl;.read0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0ea9cb88 Lsun/nio/ch/SocketChannelImpl;.read(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0cd626d4 Lio/netty/channel/socket/nio/NioSocketChannel;.doReadBytes(Lio/netty/buffer/ByteBuf;)I (/tmp/perf-3236.map)\n\t    7f1e0d39ae58 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8100122a hypercall_page ([kernel.kallsyms])\n\tffffffff8100aca2 check_events ([kernel.kallsyms])\n\tffffffff8104dffe __wake_up_sync_key ([kernel.kallsyms])\n\tffffffff8152f86e sock_def_readable ([kernel.kallsyms])\n\tffffffff8158f4c8 tcp_rcv_established ([kernel.kallsyms])\n\tffffffff815978df tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81599231 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd7df1c Lorg/mozilla/javascript/TopLevel;.getBuiltinPrototype(Lorg/mozilla/javascript/Scriptable;Lorg/mozil (/tmp/perf-3236.map)\n\t    7f1e10405c8c Lorg/mozilla/javascript/ScriptRuntime;.createFunctionActivation(Lorg/mozilla/javascript/NativeFunct (/tmp/perf-3236.map)\n\t    7f1e0e78a0ec Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0d792284 Lorg/mozilla/javascript/optimizer/OptRuntime;.call2(Lorg/mozilla/javascript/Callable;Lorg/mozilla/j (/tmp/perf-3236.map)\n\t    7f1e0cd98230 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8100122a hypercall_page ([kernel.kallsyms])\n\tffffffff8100aca2 check_events ([kernel.kallsyms])\n\tffffffff8104dffe __wake_up_sync_key ([kernel.kallsyms])\n\tffffffff8152f86e sock_def_readable ([kernel.kallsyms])\n\tffffffff8158f4c8 tcp_rcv_established ([kernel.kallsyms])\n\tffffffff815978df tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81599231 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd8964b Lorg/mozilla/javascript/ScriptableObject;.createSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/S (/tmp/perf-3236.map)\n\t    7f1e0d4f4a70 Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0cd7bff4 Lorg/mozilla/javascript/IdScriptableObject;.put(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cdaa0e0 Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0cd97df0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff81591eed tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff810df991 rcu_bh_qs ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cda9680 Lorg/mozilla/javascript/ScriptableObject$Slot;.getValue(Lorg/mozilla/javascript/Scriptable;)Ljava/l (/tmp/perf-3236.map)\n\t    7f1e10087978 Lorg/mozilla/javascript/ScriptRuntime;.getObjectProp(Ljava/lang/Object;Ljava/lang/String;Lorg/mozil (/tmp/perf-3236.map)\n\t    7f1e0cd981a4 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd5f41f Lorg/mozilla/javascript/IdScriptableObject;.findInstanceIdInfo(Ljava/lang/String;)I (/tmp/perf-3236.map)\n\t    7f1e0cd97f94 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8157d901 __inet_lookup_established ([kernel.kallsyms])\n\tffffffff81598e45 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd898d9 Lorg/mozilla/javascript/ScriptableObject;.createSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/S (/tmp/perf-3236.map)\n\t    7f1e0d4f4a70 Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0cd7bff4 Lorg/mozilla/javascript/IdScriptableObject;.put(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e10405a18 Lorg/mozilla/javascript/ScriptRuntime;.createFunctionActivation(Lorg/mozilla/javascript/NativeFunct (/tmp/perf-3236.map)\n\t    7f1e0cd21ad0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8100122a hypercall_page ([kernel.kallsyms])\n\tffffffff8100aca2 check_events ([kernel.kallsyms])\n\tffffffff8104dffe __wake_up_sync_key ([kernel.kallsyms])\n\tffffffff8152f86e sock_def_readable ([kernel.kallsyms])\n\tffffffff8158f4c8 tcp_rcv_established ([kernel.kallsyms])\n\tffffffff815978df tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81599231 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d78edd1 Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;ZLio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d78cb7c Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;Lio/netty/channel/ChannelP (/tmp/perf-3236.map)\n\t    7f1e0ce34264 Lsun/reflect/DelegatingMethodAccessorImpl;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/ (/tmp/perf-3236.map)\n\t    7f1e0d0ce780 Lorg/mozilla/javascript/MemberBox;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; (/tmp/perf-3236.map)\n\t    7f1e0cf48460 Lorg/mozilla/javascript/NativeJavaMethod;.call(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascr (/tmp/perf-3236.map)\n\t    7f1e109c62cc Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0e2b91f0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1;.call(Lorg/mozilla/javascript/Co (/tmp/perf-3236.map)\n\t    7f1e109c5920 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e104058d9 Lorg/mozilla/javascript/ScriptRuntime;.createFunctionActivation(Lorg/mozilla/javascript/NativeFunct (/tmp/perf-3236.map)\n\t    7f1e0e9b312c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0d7924e8 Lorg/mozilla/javascript/optimizer/OptRuntime;.call2(Lorg/mozilla/javascript/Callable;Lorg/mozilla/j (/tmp/perf-3236.map)\n\t    7f1e0cd22658 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cccba7e vtable chunks (/tmp/perf-3236.map)\n\t    7f1e10087978 Lorg/mozilla/javascript/ScriptRuntime;.getObjectProp(Ljava/lang/Object;Ljava/lang/String;Lorg/mozil (/tmp/perf-3236.map)\n\t    7f1e109c56bc Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0feb78c0 Lio/netty/handler/codec/http/HttpObjectDecoder;.splitHeader(Lio/netty/util/internal/AppendableCharS (/tmp/perf-3236.map)\n\t    7f1e0df12508 Lio/netty/handler/codec/http/HttpObjectDecoder;.readHeaders(Lio/netty/buffer/ByteBuf;)Lio/netty/han (/tmp/perf-3236.map)\n\t    7f1e106aaac0 Lio/netty/handler/codec/http/HttpObjectDecoder;.decode(Lio/netty/channel/ChannelHandlerContext;Lio/ (/tmp/perf-3236.map)\n\t    7f1e0e78b758 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e101d8d87 Ljava/util/ArrayList;.ensureExplicitCapacity(I)V (/tmp/perf-3236.map)\n\t    7f1e0ea9fce8 Lio/netty/handler/codec/MessageToMessageEncoder;.write(Lio/netty/channel/ChannelHandlerContext;Ljav (/tmp/perf-3236.map)\n\t    7f1e0d78ee34 Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;ZLio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ea90be8 Lorg/vertx/java/core/http/impl/VertxHttpHandler;.write(Lio/netty/channel/ChannelHandlerContext;Ljav (/tmp/perf-3236.map)\n\t    7f1e0d78ee34 Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;ZLio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d78cb7c Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;Lio/netty/channel/ChannelP (/tmp/perf-3236.map)\n\t    7f1e0ce34264 Lsun/reflect/DelegatingMethodAccessorImpl;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/ (/tmp/perf-3236.map)\n\t    7f1e0d0ce780 Lorg/mozilla/javascript/MemberBox;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; (/tmp/perf-3236.map)\n\t    7f1e0cf48460 Lorg/mozilla/javascript/NativeJavaMethod;.call(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascr (/tmp/perf-3236.map)\n\t    7f1e109c62cc Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0e2b91f0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1;.call(Lorg/mozilla/javascript/Co (/tmp/perf-3236.map)\n\t    7f1e109c5920 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8100122a hypercall_page ([kernel.kallsyms])\n\tffffffff8100aca2 check_events ([kernel.kallsyms])\n\tffffffff8104dffe __wake_up_sync_key ([kernel.kallsyms])\n\tffffffff8152f86e sock_def_readable ([kernel.kallsyms])\n\tffffffff8158f4c8 tcp_rcv_established ([kernel.kallsyms])\n\tffffffff815978df tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81599231 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8158fb61 tcp_established_options ([kernel.kallsyms])\n\tffffffff815917f4 tcp_current_mss ([kernel.kallsyms])\n\tffffffff8158174b tcp_send_mss ([kernel.kallsyms])\n\tffffffff81583334 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d8c1c9e Lorg/mozilla/javascript/WrapFactory;.wrap(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascript/S (/tmp/perf-3236.map)\n\t    7f1e0cf48530 Lorg/mozilla/javascript/NativeJavaMethod;.call(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascr (/tmp/perf-3236.map)\n\t    7f1e0cd97f08 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8157d8c0 __inet_lookup_established ([kernel.kallsyms])\n\tffffffff81598e45 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8115f051 get_slab ([kernel.kallsyms])\n\tffffffff81533118 __alloc_skb ([kernel.kallsyms])\n\tffffffff815831a4 sk_stream_alloc_skb ([kernel.kallsyms])\n\tffffffff81583678 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d4f4887 Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0cdaa10c Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0cd2241c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8117728d rw_verify_area ([kernel.kallsyms])\n\tffffffff81177775 vfs_read ([kernel.kallsyms])\n\tffffffff811778ba sys_read ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f1d read (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e0d8c180b Lsun/nio/ch/FileDispatcherImpl;.read0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0ea9cb88 Lsun/nio/ch/SocketChannelImpl;.read(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0cd626d4 Lio/netty/channel/socket/nio/NioSocketChannel;.doReadBytes(Lio/netty/buffer/ByteBuf;)I (/tmp/perf-3236.map)\n\t    7f1e0d39ae58 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8109487b getnstimeofday ([kernel.kallsyms])\n\tffffffff81094956 ktime_get_real ([kernel.kallsyms])\n\tffffffff8158b15a tcp_clean_rtx_queue ([kernel.kallsyms])\n\tffffffff8158e0a1 tcp_ack ([kernel.kallsyms])\n\tffffffff8158f426 tcp_rcv_established ([kernel.kallsyms])\n\tffffffff815978df tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81599231 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d7935b1 Lorg/mozilla/javascript/optimizer/OptRuntime;.call2(Lorg/mozilla/javascript/Callable;Lorg/mozilla/j (/tmp/perf-3236.map)\n\t    7f1e0cd98230 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0e212b87 Lorg/mozilla/javascript/ScriptableObject;.getParentScope()Lorg/mozilla/javascript/Scriptable; (/tmp/perf-3236.map)\n\t    7f1e0cea3b54 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0ff1f220 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd899c6 Lorg/mozilla/javascript/ScriptableObject;.createSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/S (/tmp/perf-3236.map)\n\t    7f1e0d4f4a70 Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0cd7bff4 Lorg/mozilla/javascript/IdScriptableObject;.put(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cdaa0e0 Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0cd978e0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8100122a hypercall_page ([kernel.kallsyms])\n\tffffffff8100aca2 check_events ([kernel.kallsyms])\n\tffffffff8104dffe __wake_up_sync_key ([kernel.kallsyms])\n\tffffffff8152f86e sock_def_readable ([kernel.kallsyms])\n\tffffffff8158f4c8 tcp_rcv_established ([kernel.kallsyms])\n\tffffffff815978df tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81599231 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd899db Lorg/mozilla/javascript/ScriptableObject;.createSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/S (/tmp/perf-3236.map)\n\t    7f1e0d4f4a70 Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0cd7bff4 Lorg/mozilla/javascript/IdScriptableObject;.put(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cdaa0e0 Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0cd2214c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd8979a Lorg/mozilla/javascript/ScriptableObject;.createSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/S (/tmp/perf-3236.map)\n\t    7f1e0d4f4a70 Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0cd7bff4 Lorg/mozilla/javascript/IdScriptableObject;.put(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e10405fac Lorg/mozilla/javascript/ScriptRuntime;.createFunctionActivation(Lorg/mozilla/javascript/NativeFunct (/tmp/perf-3236.map)\n\t    7f1e0cd96c90 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff81164da9 __kmalloc_node_track_caller ([kernel.kallsyms])\n\tffffffff81533118 __alloc_skb ([kernel.kallsyms])\n\tffffffff815831a4 sk_stream_alloc_skb ([kernel.kallsyms])\n\tffffffff81583678 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8100122a hypercall_page ([kernel.kallsyms])\n\tffffffff8100aca2 check_events ([kernel.kallsyms])\n\tffffffff8104dffe __wake_up_sync_key ([kernel.kallsyms])\n\tffffffff8152f86e sock_def_readable ([kernel.kallsyms])\n\tffffffff8158f4c8 tcp_rcv_established ([kernel.kallsyms])\n\tffffffff815978df tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81599231 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8100122a hypercall_page ([kernel.kallsyms])\n\tffffffff8100aca2 check_events ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e11308583 Lio/netty/handler/codec/http/DefaultHttpHeaders;.set(Ljava/lang/CharSequence;Ljava/lang/Object;)Lio (/tmp/perf-3236.map)\n\t    7f1e0ce33c38 Lsun/reflect/DelegatingMethodAccessorImpl;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/ (/tmp/perf-3236.map)\n\t    7f1e0d0ce780 Lorg/mozilla/javascript/MemberBox;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; (/tmp/perf-3236.map)\n\t    7f1e0cf48460 Lorg/mozilla/javascript/NativeJavaMethod;.call(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascr (/tmp/perf-3236.map)\n\t    7f1e109c62cc Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0e2b91f0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1;.call(Lorg/mozilla/javascript/Co (/tmp/perf-3236.map)\n\t    7f1e109c5920 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8100122a hypercall_page ([kernel.kallsyms])\n\tffffffff8100aca2 check_events ([kernel.kallsyms])\n\tffffffff8104dffe __wake_up_sync_key ([kernel.kallsyms])\n\tffffffff8152f86e sock_def_readable ([kernel.kallsyms])\n\tffffffff8158f4c8 tcp_rcv_established ([kernel.kallsyms])\n\tffffffff815978df tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81599231 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cccbc3e vtable chunks (/tmp/perf-3236.map)\n\t    7f1e0cdaa07c Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0cd2253c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e2215d058  (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd625a8 Lio/netty/channel/socket/nio/NioSocketChannel;.doReadBytes(Lio/netty/buffer/ByteBuf;)I (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cda8edf Lorg/mozilla/javascript/IdScriptableObject;.setAttributes(Ljava/lang/String;I)V (/tmp/perf-3236.map)\n\t    7f1e10405ee8 Lorg/mozilla/javascript/ScriptRuntime;.createFunctionActivation(Lorg/mozilla/javascript/NativeFunct (/tmp/perf-3236.map)\n\t    7f1e0e78a0ec Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0d792284 Lorg/mozilla/javascript/optimizer/OptRuntime;.call2(Lorg/mozilla/javascript/Callable;Lorg/mozilla/j (/tmp/perf-3236.map)\n\t    7f1e0cd98230 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff81471f79 loopback_xmit ([kernel.kallsyms])\n\tffffffff81542b76 dev_hard_start_xmit ([kernel.kallsyms])\n\tffffffff8154310a dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cdac8de Lio/netty/buffer/AbstractByteBuf;.forEachByteAsc0(IILio/netty/buffer/ByteBufProcessor;)I (/tmp/perf-3236.map)\n\t    7f1e0df125a4 Lio/netty/handler/codec/http/HttpObjectDecoder;.readHeaders(Lio/netty/buffer/ByteBuf;)Lio/netty/han (/tmp/perf-3236.map)\n\t    7f1e106aaac0 Lio/netty/handler/codec/http/HttpObjectDecoder;.decode(Lio/netty/channel/ChannelHandlerContext;Lio/ (/tmp/perf-3236.map)\n\t    7f1e0e78b758 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d180f0a Lsun/nio/ch/SocketChannelImpl;.writerCleanup()V (/tmp/perf-3236.map)\n\t    7f1e0cffe748 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0f096f31 Lorg/mozilla/javascript/IdScriptableObject;.has(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cdaa10c Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0cd978e0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd22001 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e10310707 Lio/netty/handler/codec/http/DefaultHttpHeaders;.add0(IILjava/lang/CharSequence;Ljava/lang/CharSequ (/tmp/perf-3236.map)\n\t    7f1e0ce33c38 Lsun/reflect/DelegatingMethodAccessorImpl;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/ (/tmp/perf-3236.map)\n\t    7f1e0d0ce780 Lorg/mozilla/javascript/MemberBox;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; (/tmp/perf-3236.map)\n\t    7f1e0cf48460 Lorg/mozilla/javascript/NativeJavaMethod;.call(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascr (/tmp/perf-3236.map)\n\t    7f1e109c62cc Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0e2b91f0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1;.call(Lorg/mozilla/javascript/Co (/tmp/perf-3236.map)\n\t    7f1e109c5920 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8100122a hypercall_page ([kernel.kallsyms])\n\tffffffff8100aca2 check_events ([kernel.kallsyms])\n\t    7f1e22141f1d read (/lib/x86_64-linux-gnu/libc-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e22141f1d read (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e0d8c180b Lsun/nio/ch/FileDispatcherImpl;.read0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0ea9cb88 Lsun/nio/ch/SocketChannelImpl;.read(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0cd626d4 Lio/netty/channel/socket/nio/NioSocketChannel;.doReadBytes(Lio/netty/buffer/ByteBuf;)I (/tmp/perf-3236.map)\n\t    7f1e0d39ae58 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff81659ce1 _raw_spin_lock_bh ([kernel.kallsyms])\n\tffffffff815850a2 tcp_recvmsg ([kernel.kallsyms])\n\tffffffff815a94cb inet_recvmsg ([kernel.kallsyms])\n\tffffffff81529e0c do_sock_read.isra.12 ([kernel.kallsyms])\n\tffffffff81529e77 sock_aio_read.part.13 ([kernel.kallsyms])\n\tffffffff81529ecd sock_aio_read ([kernel.kallsyms])\n\tffffffff81176e3a do_sync_read ([kernel.kallsyms])\n\tffffffff81177855 vfs_read ([kernel.kallsyms])\n\tffffffff811778ba sys_read ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f1d read (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e0d8c180b Lsun/nio/ch/FileDispatcherImpl;.read0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0ea9cb88 Lsun/nio/ch/SocketChannelImpl;.read(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0cd626d4 Lio/netty/channel/socket/nio/NioSocketChannel;.doReadBytes(Lio/netty/buffer/ByteBuf;)I (/tmp/perf-3236.map)\n\t    7f1e0d39ae58 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0ce334a7 Lsun/reflect/DelegatingMethodAccessorImpl;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/ (/tmp/perf-3236.map)\n\t    7f1e0d0ce780 Lorg/mozilla/javascript/MemberBox;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; (/tmp/perf-3236.map)\n\t    7f1e0cf48460 Lorg/mozilla/javascript/NativeJavaMethod;.call(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascr (/tmp/perf-3236.map)\n\t    7f1e109c62cc Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0e2b91f0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1;.call(Lorg/mozilla/javascript/Co (/tmp/perf-3236.map)\n\t    7f1e109c5920 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8158ac56 tcp_rtt_estimator ([kernel.kallsyms])\n\tffffffff8158ae16 tcp_valid_rtt_meas ([kernel.kallsyms])\n\tffffffff8158b30f tcp_clean_rtx_queue ([kernel.kallsyms])\n\tffffffff8158e0a1 tcp_ack ([kernel.kallsyms])\n\tffffffff8158f426 tcp_rcv_established ([kernel.kallsyms])\n\tffffffff815978df tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81599231 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d4f4a84 Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0f096c6c Lorg/mozilla/javascript/IdScriptableObject;.has(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cd97050 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0e212b92 Lorg/mozilla/javascript/ScriptableObject;.getParentScope()Lorg/mozilla/javascript/Scriptable; (/tmp/perf-3236.map)\n\t    7f1e0e2bcf0c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0f6bf4b8 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cd97680 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd89a78 Lorg/mozilla/javascript/ScriptableObject;.createSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/S (/tmp/perf-3236.map)\n\t    7f1e0d4f4a70 Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0cd7bff4 Lorg/mozilla/javascript/IdScriptableObject;.put(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e10405fac Lorg/mozilla/javascript/ScriptRuntime;.createFunctionActivation(Lorg/mozilla/javascript/NativeFunct (/tmp/perf-3236.map)\n\t    7f1e0cd21ad0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff815330c8 __alloc_skb ([kernel.kallsyms])\n\tffffffff815831a4 sk_stream_alloc_skb ([kernel.kallsyms])\n\tffffffff81583678 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d4f49f2 Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0f096c6c Lorg/mozilla/javascript/IdScriptableObject;.has(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cdaa07c Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0cd97d60 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8100122a hypercall_page ([kernel.kallsyms])\n\tffffffff8100aca2 check_events ([kernel.kallsyms])\n\tffffffff8104dffe __wake_up_sync_key ([kernel.kallsyms])\n\tffffffff8152f86e sock_def_readable ([kernel.kallsyms])\n\tffffffff8158f4c8 tcp_rcv_established ([kernel.kallsyms])\n\tffffffff815978df tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81599231 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff811b582b fsnotify ([kernel.kallsyms])\n\tffffffff81177680 vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff815990b6 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd7deac Lorg/mozilla/javascript/TopLevel;.getBuiltinPrototype(Lorg/mozilla/javascript/Scriptable;Lorg/mozil (/tmp/perf-3236.map)\n\t    7f1e0cd0f30c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0f6bf568 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cd97cb0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e10086d87 Lorg/mozilla/javascript/ScriptRuntime;.getPropFunctionAndThis(Ljava/lang/Object;Ljava/lang/String;L (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff81590410 tcp_set_skb_tso_segs ([kernel.kallsyms])\n\tffffffff815927bf tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0ce427b0 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8100122a hypercall_page ([kernel.kallsyms])\n\tffffffff8100aca2 check_events ([kernel.kallsyms])\n\tffffffff8104dffe __wake_up_sync_key ([kernel.kallsyms])\n\tffffffff8152f86e sock_def_readable ([kernel.kallsyms])\n\tffffffff8158f4c8 tcp_rcv_established ([kernel.kallsyms])\n\tffffffff815978df tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81599231 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff81094941 ktime_get_real ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd89e3d Lorg/mozilla/javascript/ScriptableObject;.createSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/S (/tmp/perf-3236.map)\n\t    7f1e0d4f4a70 Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0cd7bff4 Lorg/mozilla/javascript/IdScriptableObject;.put(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cdaa0e0 Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0cd21f9c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff81591941 __tcp_select_window ([kernel.kallsyms])\n\tffffffff8158482b tcp_cleanup_rbuf ([kernel.kallsyms])\n\tffffffff815853d5 tcp_recvmsg ([kernel.kallsyms])\n\tffffffff815a94cb inet_recvmsg ([kernel.kallsyms])\n\tffffffff81529e0c do_sock_read.isra.12 ([kernel.kallsyms])\n\tffffffff81529e77 sock_aio_read.part.13 ([kernel.kallsyms])\n\tffffffff81529ecd sock_aio_read ([kernel.kallsyms])\n\tffffffff81176e3a do_sync_read ([kernel.kallsyms])\n\tffffffff81177855 vfs_read ([kernel.kallsyms])\n\tffffffff811778ba sys_read ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f1d read (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e0d8c180b Lsun/nio/ch/FileDispatcherImpl;.read0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0ea9cb88 Lsun/nio/ch/SocketChannelImpl;.read(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0cd626d4 Lio/netty/channel/socket/nio/NioSocketChannel;.doReadBytes(Lio/netty/buffer/ByteBuf;)I (/tmp/perf-3236.map)\n\t    7f1e0d39ae58 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d4980c7 Lorg/mozilla/javascript/Context;.getWrapFactory()Lorg/mozilla/javascript/WrapFactory; (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0ce0ede8 Lio/netty/handler/codec/http/HttpHeaders;.isTransferEncodingChunked(Lio/netty/handler/codec/http/Ht (/tmp/perf-3236.map)\n\t    7f1e106aaac0 Lio/netty/handler/codec/http/HttpObjectDecoder;.decode(Lio/netty/channel/ChannelHandlerContext;Lio/ (/tmp/perf-3236.map)\n\t    7f1e0e78b758 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff811611e1 ksize ([kernel.kallsyms])\n\tffffffff815831a4 sk_stream_alloc_skb ([kernel.kallsyms])\n\tffffffff81583678 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff81580bd5 tcp_xmit_size_goal ([kernel.kallsyms])\n\tffffffff81581760 tcp_send_mss ([kernel.kallsyms])\n\tffffffff81583334 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d4f4a0e Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0cd7bff4 Lorg/mozilla/javascript/IdScriptableObject;.put(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cdaa0e0 Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0cd978e0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff81529ca0 sock_aio_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0f664ec0 Lorg/mozilla/javascript/ScriptableObject$RelinkedSlot;.getValue(Lorg/mozilla/javascript/Scriptable; (/tmp/perf-3236.map)\n\t    7f1e10087978 Lorg/mozilla/javascript/ScriptRuntime;.getObjectProp(Ljava/lang/Object;Ljava/lang/String;Lorg/mozil (/tmp/perf-3236.map)\n\t    7f1e109c56bc Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d48a3cc Ljava/nio/channels/spi/AbstractInterruptibleChannel;.end(Z)V (/tmp/perf-3236.map)\n\t    7f1e0ea9cc9c Lsun/nio/ch/SocketChannelImpl;.read(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0cd626d4 Lio/netty/channel/socket/nio/NioSocketChannel;.doReadBytes(Lio/netty/buffer/ByteBuf;)I (/tmp/perf-3236.map)\n\t    7f1e0d39ae58 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d8c10a9 Lio/netty/util/Recycler;.recycle(Ljava/lang/Object;Lio/netty/util/Recycler$Handle;)Z (/tmp/perf-3236.map)\n\t    7f1e0d6d53c0 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d615ee7 Lorg/mozilla/javascript/ScriptRuntime;.indexFromString(Ljava/lang/String;)J (/tmp/perf-3236.map)\n\t    7f1e0e2b90f0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1;.call(Lorg/mozilla/javascript/Co (/tmp/perf-3236.map)\n\t    7f1e109c5920 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8100a7a4 xen_clocksource_read ([kernel.kallsyms])\n\tffffffff8100a8a9 xen_clocksource_get_cycles ([kernel.kallsyms])\n\tffffffff810948b7 getnstimeofday ([kernel.kallsyms])\n\tffffffff81094956 ktime_get_real ([kernel.kallsyms])\n\tffffffff8158b15a tcp_clean_rtx_queue ([kernel.kallsyms])\n\tffffffff8158e0a1 tcp_ack ([kernel.kallsyms])\n\tffffffff8158f426 tcp_rcv_established ([kernel.kallsyms])\n\tffffffff815978df tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81599231 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cda8edf Lorg/mozilla/javascript/IdScriptableObject;.setAttributes(Ljava/lang/String;I)V (/tmp/perf-3236.map)\n\t    7f1e10405a2c Lorg/mozilla/javascript/ScriptRuntime;.createFunctionActivation(Lorg/mozilla/javascript/NativeFunct (/tmp/perf-3236.map)\n\t    7f1e0cd21ad0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8100122a hypercall_page ([kernel.kallsyms])\n\tffffffff8100aca2 check_events ([kernel.kallsyms])\n\tffffffff8104dffe __wake_up_sync_key ([kernel.kallsyms])\n\tffffffff8152f86e sock_def_readable ([kernel.kallsyms])\n\tffffffff8158f4c8 tcp_rcv_established ([kernel.kallsyms])\n\tffffffff815978df tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81599231 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8100122a hypercall_page ([kernel.kallsyms])\n\tffffffff8100aca2 check_events ([kernel.kallsyms])\n\tffffffff8104dffe __wake_up_sync_key ([kernel.kallsyms])\n\tffffffff8152f86e sock_def_readable ([kernel.kallsyms])\n\tffffffff8158f4c8 tcp_rcv_established ([kernel.kallsyms])\n\tffffffff815978df tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81599231 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d4f4894 Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0f096c6c Lorg/mozilla/javascript/IdScriptableObject;.has(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cdaa10c Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0d7938ec Lorg/mozilla/javascript/optimizer/OptRuntime;.call2(Lorg/mozilla/javascript/Callable;Lorg/mozilla/j (/tmp/perf-3236.map)\n\t    7f1e0cd98230 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d4f48b9 Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0f096c6c Lorg/mozilla/javascript/IdScriptableObject;.has(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cdaa07c Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0cd978e0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8158de90 tcp_ack ([kernel.kallsyms])\n\tffffffff8158f426 tcp_rcv_established ([kernel.kallsyms])\n\tffffffff815978df tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81599231 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8100122a hypercall_page ([kernel.kallsyms])\n\tffffffff8100aca2 check_events ([kernel.kallsyms])\n\tffffffff8104dffe __wake_up_sync_key ([kernel.kallsyms])\n\tffffffff8152f86e sock_def_readable ([kernel.kallsyms])\n\tffffffff8158f4c8 tcp_rcv_established ([kernel.kallsyms])\n\tffffffff815978df tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81599231 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0ce33da9 Lsun/reflect/DelegatingMethodAccessorImpl;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/ (/tmp/perf-3236.map)\n\t    7f1e0d0ce780 Lorg/mozilla/javascript/MemberBox;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; (/tmp/perf-3236.map)\n\t    7f1e0cf48460 Lorg/mozilla/javascript/NativeJavaMethod;.call(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascr (/tmp/perf-3236.map)\n\t    7f1e109c62cc Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0e2b91f0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1;.call(Lorg/mozilla/javascript/Co (/tmp/perf-3236.map)\n\t    7f1e109c5920 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff81533ac2 skb_release_data ([kernel.kallsyms])\n\tffffffff81533afe __kfree_skb ([kernel.kallsyms])\n\tffffffff81585abf tcp_recvmsg ([kernel.kallsyms])\n\tffffffff815a94cb inet_recvmsg ([kernel.kallsyms])\n\tffffffff81529e0c do_sock_read.isra.12 ([kernel.kallsyms])\n\tffffffff81529e77 sock_aio_read.part.13 ([kernel.kallsyms])\n\tffffffff81529ecd sock_aio_read ([kernel.kallsyms])\n\tffffffff81176e3a do_sync_read ([kernel.kallsyms])\n\tffffffff81177855 vfs_read ([kernel.kallsyms])\n\tffffffff811778ba sys_read ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f1d read (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e0d8c180b Lsun/nio/ch/FileDispatcherImpl;.read0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0ea9cb88 Lsun/nio/ch/SocketChannelImpl;.read(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0cd626d4 Lio/netty/channel/socket/nio/NioSocketChannel;.doReadBytes(Lio/netty/buffer/ByteBuf;)I (/tmp/perf-3236.map)\n\t    7f1e0d39ae58 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0f096c0b Lorg/mozilla/javascript/IdScriptableObject;.has(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cdaa10c Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0cd97730 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8100122a hypercall_page ([kernel.kallsyms])\n\tffffffff8100aca2 check_events ([kernel.kallsyms])\n\tffffffff8104dffe __wake_up_sync_key ([kernel.kallsyms])\n\tffffffff8152f86e sock_def_readable ([kernel.kallsyms])\n\tffffffff8158f4c8 tcp_rcv_established ([kernel.kallsyms])\n\tffffffff815978df tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81599231 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0dc267f8 Ljava/util/concurrent/ConcurrentHashMap;.get(Ljava/lang/Object;)Ljava/lang/Object; (/tmp/perf-3236.map)\n\t    7f1e0ce42540 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd7efc0 Lorg/mozilla/javascript/IdScriptableObject;.get(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cd225a4 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd896e0 Lorg/mozilla/javascript/ScriptableObject;.createSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/S (/tmp/perf-3236.map)\n\t    7f1e0d4f4a70 Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0cd7bff4 Lorg/mozilla/javascript/IdScriptableObject;.put(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cdaa0e0 Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0e9b336c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0d7924e8 Lorg/mozilla/javascript/optimizer/OptRuntime;.call2(Lorg/mozilla/javascript/Callable;Lorg/mozilla/j (/tmp/perf-3236.map)\n\t    7f1e0cd22658 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0ea99d47 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e109c6371 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d4f4a84 Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0cd7efec Lorg/mozilla/javascript/IdScriptableObject;.get(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e10087978 Lorg/mozilla/javascript/ScriptRuntime;.getObjectProp(Ljava/lang/Object;Ljava/lang/String;Lorg/mozil (/tmp/perf-3236.map)\n\t    7f1e0cd22588 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8103dd44 pvclock_clocksource_read ([kernel.kallsyms])\n\tffffffff8100a7c0 xen_clocksource_read ([kernel.kallsyms])\n\tffffffff8100a8a9 xen_clocksource_get_cycles ([kernel.kallsyms])\n\tffffffff810948b7 getnstimeofday ([kernel.kallsyms])\n\tffffffff81094956 ktime_get_real ([kernel.kallsyms])\n\tffffffff81591f03 tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e2215d058  (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0ea90b23 Lorg/vertx/java/core/http/impl/VertxHttpHandler;.write(Lio/netty/channel/ChannelHandlerContext;Ljav (/tmp/perf-3236.map)\n\t    7f1e0d78ee34 Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;ZLio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d78cb7c Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;Lio/netty/channel/ChannelP (/tmp/perf-3236.map)\n\t    7f1e0ce34264 Lsun/reflect/DelegatingMethodAccessorImpl;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/ (/tmp/perf-3236.map)\n\t    7f1e0d0ce780 Lorg/mozilla/javascript/MemberBox;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; (/tmp/perf-3236.map)\n\t    7f1e0cf48460 Lorg/mozilla/javascript/NativeJavaMethod;.call(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascr (/tmp/perf-3236.map)\n\t    7f1e109c62cc Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0e2b91f0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1;.call(Lorg/mozilla/javascript/Co (/tmp/perf-3236.map)\n\t    7f1e109c5920 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd89a78 Lorg/mozilla/javascript/ScriptableObject;.createSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/S (/tmp/perf-3236.map)\n\t    7f1e0d4f4a70 Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0cd7bff4 Lorg/mozilla/javascript/IdScriptableObject;.put(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e10405fac Lorg/mozilla/javascript/ScriptRuntime;.createFunctionActivation(Lorg/mozilla/javascript/NativeFunct (/tmp/perf-3236.map)\n\t    7f1e0cd96c90 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd7d001 Lio/netty/util/internal/AppendableCharSequence;.append(C)Lio/netty/util/internal/AppendableCharSequ (/tmp/perf-3236.map)\n\t    7f1e0cdac9d4 Lio/netty/buffer/AbstractByteBuf;.forEachByteAsc0(IILio/netty/buffer/ByteBufProcessor;)I (/tmp/perf-3236.map)\n\t    7f1e106aa2d8 Lio/netty/handler/codec/http/HttpObjectDecoder;.decode(Lio/netty/channel/ChannelHandlerContext;Lio/ (/tmp/perf-3236.map)\n\t    7f1e0e78b758 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8156ea84 ipv4_mtu ([kernel.kallsyms])\n\tffffffff815917cd tcp_current_mss ([kernel.kallsyms])\n\tffffffff8158174b tcp_send_mss ([kernel.kallsyms])\n\tffffffff81583334 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0fa560e0 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e11987815 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0feb7663 Lio/netty/handler/codec/http/HttpObjectDecoder;.splitHeader(Lio/netty/util/internal/AppendableCharS (/tmp/perf-3236.map)\n\t    7f1e0df12508 Lio/netty/handler/codec/http/HttpObjectDecoder;.readHeaders(Lio/netty/buffer/ByteBuf;)Lio/netty/han (/tmp/perf-3236.map)\n\t    7f1e106aaac0 Lio/netty/handler/codec/http/HttpObjectDecoder;.decode(Lio/netty/channel/ChannelHandlerContext;Lio/ (/tmp/perf-3236.map)\n\t    7f1e0e78b758 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0f09701a Lorg/mozilla/javascript/IdScriptableObject;.has(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cdaa10c Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0cd97580 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0ce3d7c0 Lio/netty/buffer/AbstractByteBufAllocator;.directBuffer(II)Lio/netty/buffer/ByteBuf; (/tmp/perf-3236.map)\n\t    7f1e0cff7380 Lio/netty/handler/codec/http/HttpObjectEncoder;.encode(Lio/netty/channel/ChannelHandlerContext;Ljav (/tmp/perf-3236.map)\n\t    7f1e0ea9fd28 Lio/netty/handler/codec/MessageToMessageEncoder;.write(Lio/netty/channel/ChannelHandlerContext;Ljav (/tmp/perf-3236.map)\n\t    7f1e0d78ee34 Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;ZLio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ea90be8 Lorg/vertx/java/core/http/impl/VertxHttpHandler;.write(Lio/netty/channel/ChannelHandlerContext;Ljav (/tmp/perf-3236.map)\n\t    7f1e0d78ee34 Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;ZLio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d78cb7c Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;Lio/netty/channel/ChannelP (/tmp/perf-3236.map)\n\t    7f1e0ce34264 Lsun/reflect/DelegatingMethodAccessorImpl;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/ (/tmp/perf-3236.map)\n\t    7f1e0d0ce780 Lorg/mozilla/javascript/MemberBox;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; (/tmp/perf-3236.map)\n\t    7f1e0cf48460 Lorg/mozilla/javascript/NativeJavaMethod;.call(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascr (/tmp/perf-3236.map)\n\t    7f1e109c62cc Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0e2b91f0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1;.call(Lorg/mozilla/javascript/Co (/tmp/perf-3236.map)\n\t    7f1e109c5920 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e11300860 Lorg/mozilla/javascript/NativeJavaObject;.get(Ljava/lang/String;Lorg/mozilla/javascript/Scriptable; (/tmp/perf-3236.map)\n\t    7f1e0cd97ec4 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd7efa0 Lorg/mozilla/javascript/IdScriptableObject;.get(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0facf358 Lorg/mozilla/javascript/ScriptRuntime;.name(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascript (/tmp/perf-3236.map)\n\t    7f1e109c56a0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff81574e48 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff812d6971 apparmor_file_permission ([kernel.kallsyms])\n\tffffffff811772c1 rw_verify_area ([kernel.kallsyms])\n\tffffffff811775f8 vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff81044b41 __phys_addr ([kernel.kallsyms])\n\tffffffff8153312c __alloc_skb ([kernel.kallsyms])\n\tffffffff815831a4 sk_stream_alloc_skb ([kernel.kallsyms])\n\tffffffff81583678 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d0ce6e7 Lorg/mozilla/javascript/MemberBox;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; (/tmp/perf-3236.map)\n\t    7f1e0cd97f08 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0e212ba1 Lorg/mozilla/javascript/ScriptableObject;.getParentScope()Lorg/mozilla/javascript/Scriptable; (/tmp/perf-3236.map)\n\t    7f1e0e9b33e4 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0d7924e8 Lorg/mozilla/javascript/optimizer/OptRuntime;.call2(Lorg/mozilla/javascript/Callable;Lorg/mozilla/j (/tmp/perf-3236.map)\n\t    7f1e0cd22658 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d8bad76 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e10405908 Lorg/mozilla/javascript/ScriptRuntime;.createFunctionActivation(Lorg/mozilla/javascript/NativeFunct (/tmp/perf-3236.map)\n\t    7f1e0cd96c90 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd89771 Lorg/mozilla/javascript/ScriptableObject;.createSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/S (/tmp/perf-3236.map)\n\t    7f1e0d4f4a70 Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0cd7bff4 Lorg/mozilla/javascript/IdScriptableObject;.put(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cdaa0e0 Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0cd2214c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e11309ba7 Lio/netty/handler/codec/http/HttpObjectDecoder;.findWhitespace(Ljava/lang/CharSequence;I)I (/tmp/perf-3236.map)\n\t    7f1e106aa358 Lio/netty/handler/codec/http/HttpObjectDecoder;.decode(Lio/netty/channel/ChannelHandlerContext;Lio/ (/tmp/perf-3236.map)\n\t    7f1e0e78b758 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d4f49f2 Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0cd7bff4 Lorg/mozilla/javascript/IdScriptableObject;.put(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cd97244 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8117787c sys_read ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f1d read (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e0d8c180b Lsun/nio/ch/FileDispatcherImpl;.read0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0ea9cb88 Lsun/nio/ch/SocketChannelImpl;.read(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0cd626d4 Lio/netty/channel/socket/nio/NioSocketChannel;.doReadBytes(Lio/netty/buffer/ByteBuf;)I (/tmp/perf-3236.map)\n\t    7f1e0d39ae58 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8100a8a0 xen_clocksource_get_cycles ([kernel.kallsyms])\n\tffffffff81094956 ktime_get_real ([kernel.kallsyms])\n\tffffffff81591f03 tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0facf728 Lio/netty/buffer/AbstractByteBuf;.writeBytes([B)Lio/netty/buffer/ByteBuf; (/tmp/perf-3236.map)\n\t    7f1e0ea9fd28 Lio/netty/handler/codec/MessageToMessageEncoder;.write(Lio/netty/channel/ChannelHandlerContext;Ljav (/tmp/perf-3236.map)\n\t    7f1e0d78ee34 Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;ZLio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ea90be8 Lorg/vertx/java/core/http/impl/VertxHttpHandler;.write(Lio/netty/channel/ChannelHandlerContext;Ljav (/tmp/perf-3236.map)\n\t    7f1e0d78ee34 Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;ZLio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d78cb7c Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;Lio/netty/channel/ChannelP (/tmp/perf-3236.map)\n\t    7f1e0ce34264 Lsun/reflect/DelegatingMethodAccessorImpl;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/ (/tmp/perf-3236.map)\n\t    7f1e0d0ce780 Lorg/mozilla/javascript/MemberBox;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; (/tmp/perf-3236.map)\n\t    7f1e0cf48460 Lorg/mozilla/javascript/NativeJavaMethod;.call(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascr (/tmp/perf-3236.map)\n\t    7f1e109c62cc Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0e2b91f0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1;.call(Lorg/mozilla/javascript/Co (/tmp/perf-3236.map)\n\t    7f1e109c5920 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0f664ee9 Lorg/mozilla/javascript/ScriptableObject$RelinkedSlot;.getValue(Lorg/mozilla/javascript/Scriptable; (/tmp/perf-3236.map)\n\t    7f1e0cd7f008 Lorg/mozilla/javascript/IdScriptableObject;.get(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0f99a268 Lorg/mozilla/javascript/ScriptRuntime;.nameOrFunction(Lorg/mozilla/javascript/Context;Lorg/mozilla/ (/tmp/perf-3236.map)\n\t    7f1e0facf358 Lorg/mozilla/javascript/ScriptRuntime;.name(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascript (/tmp/perf-3236.map)\n\t    7f1e109c61e0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0e2b91f0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1;.call(Lorg/mozilla/javascript/Co (/tmp/perf-3236.map)\n\t    7f1e109c5920 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0dc9c403 Lio/netty/buffer/PooledByteBuf;.internalNioBuffer()Ljava/nio/ByteBuffer; (/tmp/perf-3236.map)\n\t    7f1e0d6db2e0 Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0e78b88b Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e109c5bc0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0e2b91f0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1;.call(Lorg/mozilla/javascript/Co (/tmp/perf-3236.map)\n\t    7f1e109c5920 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d4980c7 Lorg/mozilla/javascript/Context;.getWrapFactory()Lorg/mozilla/javascript/WrapFactory; (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8158ac50 tcp_rtt_estimator ([kernel.kallsyms])\n\tffffffff8158b30f tcp_clean_rtx_queue ([kernel.kallsyms])\n\tffffffff8158e0a1 tcp_ack ([kernel.kallsyms])\n\tffffffff8158f426 tcp_rcv_established ([kernel.kallsyms])\n\tffffffff815978df tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81599231 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8108f76c __srcu_read_lock ([kernel.kallsyms])\n\tffffffff811b5954 fsnotify ([kernel.kallsyms])\n\tffffffff81177680 vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff81580bc1 tcp_xmit_size_goal ([kernel.kallsyms])\n\tffffffff81583334 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8100ac8f xen_restore_fl_direct_end ([kernel.kallsyms])\n\tffffffff81541fb5 netif_rx.part.82 ([kernel.kallsyms])\n\tffffffff815420d0 netif_rx ([kernel.kallsyms])\n\tffffffff81471fa5 loopback_xmit ([kernel.kallsyms])\n\tffffffff81542b76 dev_hard_start_xmit ([kernel.kallsyms])\n\tffffffff8154310a dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cccb960 vtable chunks (/tmp/perf-3236.map)\n\t    7f1e0ea9febc Lio/netty/handler/codec/MessageToMessageEncoder;.write(Lio/netty/channel/ChannelHandlerContext;Ljav (/tmp/perf-3236.map)\n\t    7f1e0d78ee34 Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;ZLio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ea90be8 Lorg/vertx/java/core/http/impl/VertxHttpHandler;.write(Lio/netty/channel/ChannelHandlerContext;Ljav (/tmp/perf-3236.map)\n\t    7f1e0d78ee34 Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;ZLio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d78cb7c Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;Lio/netty/channel/ChannelP (/tmp/perf-3236.map)\n\t    7f1e0ce34264 Lsun/reflect/DelegatingMethodAccessorImpl;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/ (/tmp/perf-3236.map)\n\t    7f1e0d0ce780 Lorg/mozilla/javascript/MemberBox;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; (/tmp/perf-3236.map)\n\t    7f1e0cf48460 Lorg/mozilla/javascript/NativeJavaMethod;.call(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascr (/tmp/perf-3236.map)\n\t    7f1e109c62cc Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0e2b91f0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1;.call(Lorg/mozilla/javascript/Co (/tmp/perf-3236.map)\n\t    7f1e109c5920 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0f096d7e Lorg/mozilla/javascript/IdScriptableObject;.has(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cdaa10c Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0e9b3404 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0d7924e8 Lorg/mozilla/javascript/optimizer/OptRuntime;.call2(Lorg/mozilla/javascript/Callable;Lorg/mozilla/j (/tmp/perf-3236.map)\n\t    7f1e0cd22658 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8158478b tcp_cleanup_rbuf ([kernel.kallsyms])\n\tffffffff815853d5 tcp_recvmsg ([kernel.kallsyms])\n\tffffffff815a94cb inet_recvmsg ([kernel.kallsyms])\n\tffffffff81529e0c do_sock_read.isra.12 ([kernel.kallsyms])\n\tffffffff81529e77 sock_aio_read.part.13 ([kernel.kallsyms])\n\tffffffff81529ecd sock_aio_read ([kernel.kallsyms])\n\tffffffff81176e3a do_sync_read ([kernel.kallsyms])\n\tffffffff81177855 vfs_read ([kernel.kallsyms])\n\tffffffff811778ba sys_read ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f1d read (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e0d8c180b Lsun/nio/ch/FileDispatcherImpl;.read0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0ea9cb88 Lsun/nio/ch/SocketChannelImpl;.read(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0cd626d4 Lio/netty/channel/socket/nio/NioSocketChannel;.doReadBytes(Lio/netty/buffer/ByteBuf;)I (/tmp/perf-3236.map)\n\t    7f1e0d39ae58 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff81583cbe tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8100122a hypercall_page ([kernel.kallsyms])\n\tffffffff8100aca2 check_events ([kernel.kallsyms])\n\tffffffff8104dffe __wake_up_sync_key ([kernel.kallsyms])\n\tffffffff8152f86e sock_def_readable ([kernel.kallsyms])\n\tffffffff8158f4c8 tcp_rcv_established ([kernel.kallsyms])\n\tffffffff815978df tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81599231 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0dc1788e Ljava/util/HashMap;.get(Ljava/lang/Object;)Ljava/lang/Object; (/tmp/perf-3236.map)\n\t    7f1e0d8c1f88 Lorg/mozilla/javascript/WrapFactory;.wrap(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascript/S (/tmp/perf-3236.map)\n\t    7f1e0cea3b54 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cea27bb Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0ea90a67 Lorg/vertx/java/core/http/impl/VertxHttpHandler;.write(Lio/netty/channel/ChannelHandlerContext;Ljav (/tmp/perf-3236.map)\n\t    7f1e0d78cb7c Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;Lio/netty/channel/ChannelP (/tmp/perf-3236.map)\n\t    7f1e0ce34264 Lsun/reflect/DelegatingMethodAccessorImpl;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/ (/tmp/perf-3236.map)\n\t    7f1e0d0ce780 Lorg/mozilla/javascript/MemberBox;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; (/tmp/perf-3236.map)\n\t    7f1e0cf48460 Lorg/mozilla/javascript/NativeJavaMethod;.call(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascr (/tmp/perf-3236.map)\n\t    7f1e109c62cc Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0e2b91f0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1;.call(Lorg/mozilla/javascript/Co (/tmp/perf-3236.map)\n\t    7f1e109c5920 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd7de60 Lorg/mozilla/javascript/TopLevel;.getBuiltinPrototype(Lorg/mozilla/javascript/Scriptable;Lorg/mozil (/tmp/perf-3236.map)\n\t    7f1e10405c8c Lorg/mozilla/javascript/ScriptRuntime;.createFunctionActivation(Lorg/mozilla/javascript/NativeFunct (/tmp/perf-3236.map)\n\t    7f1e0e78a0ec Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0d792284 Lorg/mozilla/javascript/optimizer/OptRuntime;.call2(Lorg/mozilla/javascript/Callable;Lorg/mozilla/j (/tmp/perf-3236.map)\n\t    7f1e0cd98230 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8100122a hypercall_page ([kernel.kallsyms])\n\tffffffff8100aca2 check_events ([kernel.kallsyms])\n\tffffffff8104dffe __wake_up_sync_key ([kernel.kallsyms])\n\tffffffff8152f86e sock_def_readable ([kernel.kallsyms])\n\tffffffff8158f4c8 tcp_rcv_established ([kernel.kallsyms])\n\tffffffff815978df tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81599231 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8100122a hypercall_page ([kernel.kallsyms])\n\tffffffff8100aca2 check_events ([kernel.kallsyms])\n\tffffffff8104dffe __wake_up_sync_key ([kernel.kallsyms])\n\tffffffff8152f86e sock_def_readable ([kernel.kallsyms])\n\tffffffff8158f4c8 tcp_rcv_established ([kernel.kallsyms])\n\tffffffff815978df tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81599231 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff81548e3c dst_release ([kernel.kallsyms])\n\tffffffff81533d79 skb_release_head_state ([kernel.kallsyms])\n\tffffffff81533af6 __kfree_skb ([kernel.kallsyms])\n\tffffffff81585abf tcp_recvmsg ([kernel.kallsyms])\n\tffffffff815a94cb inet_recvmsg ([kernel.kallsyms])\n\tffffffff81529e0c do_sock_read.isra.12 ([kernel.kallsyms])\n\tffffffff81529e77 sock_aio_read.part.13 ([kernel.kallsyms])\n\tffffffff81529ecd sock_aio_read ([kernel.kallsyms])\n\tffffffff81176e3a do_sync_read ([kernel.kallsyms])\n\tffffffff81177855 vfs_read ([kernel.kallsyms])\n\tffffffff811778ba sys_read ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f1d read (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e0d8c180b Lsun/nio/ch/FileDispatcherImpl;.read0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0ea9cb88 Lsun/nio/ch/SocketChannelImpl;.read(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0cd626d4 Lio/netty/channel/socket/nio/NioSocketChannel;.doReadBytes(Lio/netty/buffer/ByteBuf;)I (/tmp/perf-3236.map)\n\t    7f1e0d39ae58 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd89b04 Lorg/mozilla/javascript/ScriptableObject;.createSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/S (/tmp/perf-3236.map)\n\t    7f1e0d4f4a70 Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0cd7bff4 Lorg/mozilla/javascript/IdScriptableObject;.put(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cdaa0e0 Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0cd97730 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cdac922 Lio/netty/buffer/AbstractByteBuf;.forEachByteAsc0(IILio/netty/buffer/ByteBufProcessor;)I (/tmp/perf-3236.map)\n\t    7f1e0df12338 Lio/netty/handler/codec/http/HttpObjectDecoder;.readHeaders(Lio/netty/buffer/ByteBuf;)Lio/netty/han (/tmp/perf-3236.map)\n\t    7f1e106aaac0 Lio/netty/handler/codec/http/HttpObjectDecoder;.decode(Lio/netty/channel/ChannelHandlerContext;Lio/ (/tmp/perf-3236.map)\n\t    7f1e0e78b758 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cea447a Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff811626fa kmem_cache_alloc_node ([kernel.kallsyms])\n\tffffffff815330eb __alloc_skb ([kernel.kallsyms])\n\tffffffff815831a4 sk_stream_alloc_skb ([kernel.kallsyms])\n\tffffffff81583678 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff813a2f29 dma_issue_pending_all ([kernel.kallsyms])\n\tffffffff81541dd2 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8106d43c local_bh_disable ([kernel.kallsyms])\n\tffffffff81659cf6 _raw_spin_lock_bh ([kernel.kallsyms])\n\tffffffff8152df44 lock_sock_nested ([kernel.kallsyms])\n\tffffffff815832a9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff81574c80 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e113084c7 Lio/netty/handler/codec/http/DefaultHttpHeaders;.set(Ljava/lang/CharSequence;Ljava/lang/Object;)Lio (/tmp/perf-3236.map)\n\t    7f1e0d0ce780 Lorg/mozilla/javascript/MemberBox;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; (/tmp/perf-3236.map)\n\t    7f1e0cf48460 Lorg/mozilla/javascript/NativeJavaMethod;.call(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascr (/tmp/perf-3236.map)\n\t    7f1e109c62cc Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0e2b91f0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1;.call(Lorg/mozilla/javascript/Co (/tmp/perf-3236.map)\n\t    7f1e109c5920 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0ca1bf80 jbyte_disjoint_arraycopy (/tmp/perf-3236.map)\n\t    7f1e0e9ac695 Lsun/nio/cs/UTF_8$Encoder;.<init>(Ljava/nio/charset/Charset;Lsun/nio/cs/UTF_8$1;)V (/tmp/perf-3236.map)\n\t    7f1e0ce3356c Lsun/reflect/DelegatingMethodAccessorImpl;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/ (/tmp/perf-3236.map)\n\t    7f1e0d0ce780 Lorg/mozilla/javascript/MemberBox;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; (/tmp/perf-3236.map)\n\t    7f1e0cf48460 Lorg/mozilla/javascript/NativeJavaMethod;.call(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascr (/tmp/perf-3236.map)\n\t    7f1e109c62cc Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0e2b91f0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1;.call(Lorg/mozilla/javascript/Co (/tmp/perf-3236.map)\n\t    7f1e109c5920 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8158b620 tcp_rcv_space_adjust ([kernel.kallsyms])\n\tffffffff815a94cb inet_recvmsg ([kernel.kallsyms])\n\tffffffff81529e0c do_sock_read.isra.12 ([kernel.kallsyms])\n\tffffffff81529e77 sock_aio_read.part.13 ([kernel.kallsyms])\n\tffffffff81529ecd sock_aio_read ([kernel.kallsyms])\n\tffffffff81176e3a do_sync_read ([kernel.kallsyms])\n\tffffffff81177855 vfs_read ([kernel.kallsyms])\n\tffffffff811778ba sys_read ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f1d read (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e0d8c180b Lsun/nio/ch/FileDispatcherImpl;.read0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0ea9cb88 Lsun/nio/ch/SocketChannelImpl;.read(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0cd626d4 Lio/netty/channel/socket/nio/NioSocketChannel;.doReadBytes(Lio/netty/buffer/ByteBuf;)I (/tmp/perf-3236.map)\n\t    7f1e0d39ae58 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cccba73 vtable chunks (/tmp/perf-3236.map)\n\t    7f1e0f99a2e4 Lorg/mozilla/javascript/ScriptRuntime;.nameOrFunction(Lorg/mozilla/javascript/Context;Lorg/mozilla/ (/tmp/perf-3236.map)\n\t    7f1e0facf358 Lorg/mozilla/javascript/ScriptRuntime;.name(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascript (/tmp/perf-3236.map)\n\t    7f1e0d79332c Lorg/mozilla/javascript/optimizer/OptRuntime;.call2(Lorg/mozilla/javascript/Callable;Lorg/mozilla/j (/tmp/perf-3236.map)\n\t    7f1e0cd98230 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0dcff928 Lio/netty/buffer/AbstractReferenceCountedByteBuf;.release()Z (/tmp/perf-3236.map)\n\t    7f1e0d6d53c0 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff81542920 dev_hard_start_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0ff2068d Lio/netty/util/concurrent/FastThreadLocal;.get()Ljava/lang/Object; (/tmp/perf-3236.map)\n\t    7f1e0ce3d5a0 Lio/netty/buffer/AbstractByteBufAllocator;.directBuffer(II)Lio/netty/buffer/ByteBuf; (/tmp/perf-3236.map)\n\t    7f1e0cff7380 Lio/netty/handler/codec/http/HttpObjectEncoder;.encode(Lio/netty/channel/ChannelHandlerContext;Ljav (/tmp/perf-3236.map)\n\t    7f1e0ea9fd28 Lio/netty/handler/codec/MessageToMessageEncoder;.write(Lio/netty/channel/ChannelHandlerContext;Ljav (/tmp/perf-3236.map)\n\t    7f1e0d78ee34 Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;ZLio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ea90be8 Lorg/vertx/java/core/http/impl/VertxHttpHandler;.write(Lio/netty/channel/ChannelHandlerContext;Ljav (/tmp/perf-3236.map)\n\t    7f1e0d78ee34 Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;ZLio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d78cb7c Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;Lio/netty/channel/ChannelP (/tmp/perf-3236.map)\n\t    7f1e0ce34264 Lsun/reflect/DelegatingMethodAccessorImpl;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/ (/tmp/perf-3236.map)\n\t    7f1e0d0ce780 Lorg/mozilla/javascript/MemberBox;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; (/tmp/perf-3236.map)\n\t    7f1e0cf48460 Lorg/mozilla/javascript/NativeJavaMethod;.call(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascr (/tmp/perf-3236.map)\n\t    7f1e109c62cc Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0e2b91f0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1;.call(Lorg/mozilla/javascript/Co (/tmp/perf-3236.map)\n\t    7f1e109c5920 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0f096bd0 Lorg/mozilla/javascript/IdScriptableObject;.has(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cdaa10c Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0cd97cd0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8100122a hypercall_page ([kernel.kallsyms])\n\tffffffff8100aca2 check_events ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8158af10 tcp_clean_rtx_queue ([kernel.kallsyms])\n\tffffffff8158e0a1 tcp_ack ([kernel.kallsyms])\n\tffffffff8158f426 tcp_rcv_established ([kernel.kallsyms])\n\tffffffff815978df tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81599231 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff81534f71 skb_clone ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd89a78 Lorg/mozilla/javascript/ScriptableObject;.createSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/S (/tmp/perf-3236.map)\n\t    7f1e0d4f4a70 Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0cd7bff4 Lorg/mozilla/javascript/IdScriptableObject;.put(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cdaa0e0 Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0e9b32d4 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0d7924e8 Lorg/mozilla/javascript/optimizer/OptRuntime;.call2(Lorg/mozilla/javascript/Callable;Lorg/mozilla/j (/tmp/perf-3236.map)\n\t    7f1e0cd22658 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8157a421 ip_output ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0feb78fb Lio/netty/handler/codec/http/HttpObjectDecoder;.splitHeader(Lio/netty/util/internal/AppendableCharS (/tmp/perf-3236.map)\n\t    7f1e0df12508 Lio/netty/handler/codec/http/HttpObjectDecoder;.readHeaders(Lio/netty/buffer/ByteBuf;)Lio/netty/han (/tmp/perf-3236.map)\n\t    7f1e106aaac0 Lio/netty/handler/codec/http/HttpObjectDecoder;.decode(Lio/netty/channel/ChannelHandlerContext;Lio/ (/tmp/perf-3236.map)\n\t    7f1e0e78b758 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cf48335 Lorg/mozilla/javascript/NativeJavaMethod;.call(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascr (/tmp/perf-3236.map)\n\t    7f1e0cd97f08 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff811772ab rw_verify_area ([kernel.kallsyms])\n\tffffffff811775f8 vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d4f4aab Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0cd7efec Lorg/mozilla/javascript/IdScriptableObject;.get(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e10405df8 Lorg/mozilla/javascript/ScriptRuntime;.createFunctionActivation(Lorg/mozilla/javascript/NativeFunct (/tmp/perf-3236.map)\n\t    7f1e0cd96c90 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8100122a hypercall_page ([kernel.kallsyms])\n\tffffffff8100aca2 check_events ([kernel.kallsyms])\n\tffffffff8104dffe __wake_up_sync_key ([kernel.kallsyms])\n\tffffffff8152f86e sock_def_readable ([kernel.kallsyms])\n\tffffffff8158f4c8 tcp_rcv_established ([kernel.kallsyms])\n\tffffffff815978df tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81599231 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd8962c Lorg/mozilla/javascript/ScriptableObject;.createSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/S (/tmp/perf-3236.map)\n\t    7f1e0d4f4a70 Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0cd7bff4 Lorg/mozilla/javascript/IdScriptableObject;.put(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cdaa0e0 Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0e9b3404 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0d7924e8 Lorg/mozilla/javascript/optimizer/OptRuntime;.call2(Lorg/mozilla/javascript/Callable;Lorg/mozilla/j (/tmp/perf-3236.map)\n\t    7f1e0cd22658 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d3fc2e7 Lorg/mozilla/javascript/NativeJavaMethod;.findFunction(Lorg/mozilla/javascript/Context;[Lorg/mozill (/tmp/perf-3236.map)\n\t    7f1e0cd97f08 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0ff1ce1f Lsun/nio/ch/NativeThread;.current()J (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d615efd Lorg/mozilla/javascript/ScriptRuntime;.indexFromString(Ljava/lang/String;)J (/tmp/perf-3236.map)\n\t    7f1e0e2bc514 Lorg/mozilla/javascript/ScriptRuntime;.setObjectElem(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0e2b90f0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1;.call(Lorg/mozilla/javascript/Co (/tmp/perf-3236.map)\n\t    7f1e109c5920 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0ce336e2 Lsun/reflect/DelegatingMethodAccessorImpl;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/ (/tmp/perf-3236.map)\n\t    7f1e0d0ce780 Lorg/mozilla/javascript/MemberBox;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; (/tmp/perf-3236.map)\n\t    7f1e0cf48460 Lorg/mozilla/javascript/NativeJavaMethod;.call(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascr (/tmp/perf-3236.map)\n\t    7f1e109c62cc Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0e2b91f0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1;.call(Lorg/mozilla/javascript/Co (/tmp/perf-3236.map)\n\t    7f1e109c5920 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd89707 Lorg/mozilla/javascript/ScriptableObject;.createSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/S (/tmp/perf-3236.map)\n\t    7f1e0d4f4a70 Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0cd7bff4 Lorg/mozilla/javascript/IdScriptableObject;.put(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cdaa0e0 Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0cd97df0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e11300ec8 Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e104057f2 Lorg/mozilla/javascript/ScriptRuntime;.createFunctionActivation(Lorg/mozilla/javascript/NativeFunct (/tmp/perf-3236.map)\n\t    7f1e0cd21ad0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd89752 Lorg/mozilla/javascript/ScriptableObject;.createSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/S (/tmp/perf-3236.map)\n\t    7f1e0d4f4a70 Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0cd7bff4 Lorg/mozilla/javascript/IdScriptableObject;.put(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cdaa0e0 Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0e78a1fc Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0d792284 Lorg/mozilla/javascript/optimizer/OptRuntime;.call2(Lorg/mozilla/javascript/Callable;Lorg/mozilla/j (/tmp/perf-3236.map)\n\t    7f1e0cd98230 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0ea99d47 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0f096ba0 Lorg/mozilla/javascript/IdScriptableObject;.has(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cd222fc Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff81176d61 do_sync_read ([kernel.kallsyms])\n\tffffffff811778ba sys_read ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f1d read (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e0d8c180b Lsun/nio/ch/FileDispatcherImpl;.read0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0ea9cb88 Lsun/nio/ch/SocketChannelImpl;.read(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0cd626d4 Lio/netty/channel/socket/nio/NioSocketChannel;.doReadBytes(Lio/netty/buffer/ByteBuf;)I (/tmp/perf-3236.map)\n\t    7f1e0d39ae58 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e106a7dab Ljava/util/Arrays;.fill([Ljava/lang/Object;Ljava/lang/Object;)V (/tmp/perf-3236.map)\n\t    7f1e0df123d4 Lio/netty/handler/codec/http/HttpObjectDecoder;.readHeaders(Lio/netty/buffer/ByteBuf;)Lio/netty/han (/tmp/perf-3236.map)\n\t    7f1e106aaac0 Lio/netty/handler/codec/http/HttpObjectDecoder;.decode(Lio/netty/channel/ChannelHandlerContext;Lio/ (/tmp/perf-3236.map)\n\t    7f1e0e78b758 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e11300860 Lorg/mozilla/javascript/NativeJavaObject;.get(Ljava/lang/String;Lorg/mozilla/javascript/Scriptable; (/tmp/perf-3236.map)\n\t    7f1e0cd97ec4 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e001d9d9d Java_sun_nio_ch_FileDispatcherImpl_write0 (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/libnio.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8157d8a3 __inet_lookup_established ([kernel.kallsyms])\n\tffffffff81598e45 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0df124f9 Lio/netty/handler/codec/http/HttpObjectDecoder;.readHeaders(Lio/netty/buffer/ByteBuf;)Lio/netty/han (/tmp/perf-3236.map)\n\t    7f1e106aaac0 Lio/netty/handler/codec/http/HttpObjectDecoder;.decode(Lio/netty/channel/ChannelHandlerContext;Lio/ (/tmp/perf-3236.map)\n\t    7f1e0e78b758 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8115f051 get_slab ([kernel.kallsyms])\n\tffffffff81533118 __alloc_skb ([kernel.kallsyms])\n\tffffffff815831a4 sk_stream_alloc_skb ([kernel.kallsyms])\n\tffffffff81583678 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e10087933 Lorg/mozilla/javascript/ScriptRuntime;.getObjectProp(Ljava/lang/Object;Ljava/lang/String;Lorg/mozil (/tmp/perf-3236.map)\n\t    7f1e109c56bc Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e109c2ca7 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff815be638 bictcp_acked ([kernel.kallsyms])\n\tffffffff8158b198 tcp_clean_rtx_queue ([kernel.kallsyms])\n\tffffffff8158e0a1 tcp_ack ([kernel.kallsyms])\n\tffffffff8158f426 tcp_rcv_established ([kernel.kallsyms])\n\tffffffff815978df tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81599231 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0f666be7 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd5f400 Lorg/mozilla/javascript/IdScriptableObject;.findInstanceIdInfo(Ljava/lang/String;)I (/tmp/perf-3236.map)\n\t    7f1e0cdaa07c Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0cd2214c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd7c042 Lorg/mozilla/javascript/IdScriptableObject;.put(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cdaa0e0 Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0cd980c8 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d4f49f2 Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0f096c6c Lorg/mozilla/javascript/IdScriptableObject;.has(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cdaa10c Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0cd97610 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd89b2e Lorg/mozilla/javascript/ScriptableObject;.createSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/S (/tmp/perf-3236.map)\n\t    7f1e0d4f4a70 Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0cd7bff4 Lorg/mozilla/javascript/IdScriptableObject;.put(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cdaa0e0 Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0e9b32d4 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0d7924e8 Lorg/mozilla/javascript/optimizer/OptRuntime;.call2(Lorg/mozilla/javascript/Callable;Lorg/mozilla/j (/tmp/perf-3236.map)\n\t    7f1e0cd22658 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d615f3c Lorg/mozilla/javascript/ScriptRuntime;.indexFromString(Ljava/lang/String;)J (/tmp/perf-3236.map)\n\t    7f1e0e2bc514 Lorg/mozilla/javascript/ScriptRuntime;.setObjectElem(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0e2b90f0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1;.call(Lorg/mozilla/javascript/Co (/tmp/perf-3236.map)\n\t    7f1e109c5920 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff81316724 copy_user_enhanced_fast_string ([kernel.kallsyms])\n\tffffffff81537937 skb_copy_datagram_iovec ([kernel.kallsyms])\n\tffffffff81585a45 tcp_recvmsg ([kernel.kallsyms])\n\tffffffff815a94cb inet_recvmsg ([kernel.kallsyms])\n\tffffffff81529e0c do_sock_read.isra.12 ([kernel.kallsyms])\n\tffffffff81529e77 sock_aio_read.part.13 ([kernel.kallsyms])\n\tffffffff81529ecd sock_aio_read ([kernel.kallsyms])\n\tffffffff81176e3a do_sync_read ([kernel.kallsyms])\n\tffffffff81177855 vfs_read ([kernel.kallsyms])\n\tffffffff811778ba sys_read ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f1d read (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e0d8c180b Lsun/nio/ch/FileDispatcherImpl;.read0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0ea9cb88 Lsun/nio/ch/SocketChannelImpl;.read(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0cd626d4 Lio/netty/channel/socket/nio/NioSocketChannel;.doReadBytes(Lio/netty/buffer/ByteBuf;)I (/tmp/perf-3236.map)\n\t    7f1e0d39ae58 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cda8e07 Lorg/mozilla/javascript/IdScriptableObject;.setAttributes(Ljava/lang/String;I)V (/tmp/perf-3236.map)\n\t    7f1e0cd96c90 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff81591be1 tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff815836dc tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd89650 Lorg/mozilla/javascript/ScriptableObject;.createSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/S (/tmp/perf-3236.map)\n\t    7f1e0d4f4a70 Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0cd7bff4 Lorg/mozilla/javascript/IdScriptableObject;.put(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cdaa0e0 Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0cd97d60 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff81533ae1 __kfree_skb ([kernel.kallsyms])\n\tffffffff815a94cb inet_recvmsg ([kernel.kallsyms])\n\tffffffff81529e0c do_sock_read.isra.12 ([kernel.kallsyms])\n\tffffffff81529e77 sock_aio_read.part.13 ([kernel.kallsyms])\n\tffffffff81529ecd sock_aio_read ([kernel.kallsyms])\n\tffffffff81176e3a do_sync_read ([kernel.kallsyms])\n\tffffffff81177855 vfs_read ([kernel.kallsyms])\n\tffffffff811778ba sys_read ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f1d read (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e0d8c180b Lsun/nio/ch/FileDispatcherImpl;.read0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0ea9cb88 Lsun/nio/ch/SocketChannelImpl;.read(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0cd626d4 Lio/netty/channel/socket/nio/NioSocketChannel;.doReadBytes(Lio/netty/buffer/ByteBuf;)I (/tmp/perf-3236.map)\n\t    7f1e0d39ae58 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d0ce763 Lorg/mozilla/javascript/MemberBox;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; (/tmp/perf-3236.map)\n\t    7f1e0cf48460 Lorg/mozilla/javascript/NativeJavaMethod;.call(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascr (/tmp/perf-3236.map)\n\t    7f1e109c62cc Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0e2b91f0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1;.call(Lorg/mozilla/javascript/Co (/tmp/perf-3236.map)\n\t    7f1e109c5920 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd89b2e Lorg/mozilla/javascript/ScriptableObject;.createSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/S (/tmp/perf-3236.map)\n\t    7f1e0d4f4a70 Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0cd7bff4 Lorg/mozilla/javascript/IdScriptableObject;.put(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cdaa0e0 Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0e9b32d4 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0d7924e8 Lorg/mozilla/javascript/optimizer/OptRuntime;.call2(Lorg/mozilla/javascript/Callable;Lorg/mozilla/j (/tmp/perf-3236.map)\n\t    7f1e0cd22658 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cc84a24 Lorg/mozilla/javascript/ScriptableObject;.getPrototype()Lorg/mozilla/javascript/Scriptable; (/tmp/perf-3236.map)\n\t    7f1e0cd96c90 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0dc1779d Ljava/util/HashMap;.get(Ljava/lang/Object;)Ljava/lang/Object; (/tmp/perf-3236.map)\n\t    7f1e0d788bb4 Lorg/mozilla/javascript/WrapFactory;.wrapAsJavaObject(Lorg/mozilla/javascript/Context;Lorg/mozilla/ (/tmp/perf-3236.map)\n\t    7f1e0cea3b94 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d788a64 Lorg/mozilla/javascript/WrapFactory;.wrapAsJavaObject(Lorg/mozilla/javascript/Context;Lorg/mozilla/ (/tmp/perf-3236.map)\n\t    7f1e0cea3b94 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e109c5b81 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0e2b91f0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1;.call(Lorg/mozilla/javascript/Co (/tmp/perf-3236.map)\n\t    7f1e109c5920 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd7de4b Lorg/mozilla/javascript/TopLevel;.getBuiltinPrototype(Lorg/mozilla/javascript/Scriptable;Lorg/mozil (/tmp/perf-3236.map)\n\t    7f1e0cea124c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0f6bf538 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cd97b00 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0ff20648 Lio/netty/util/concurrent/FastThreadLocal;.get()Ljava/lang/Object; (/tmp/perf-3236.map)\n\t    7f1e11302970 Lio/netty/util/internal/RecyclableArrayList;.newInstance()Lio/netty/util/internal/RecyclableArrayLi (/tmp/perf-3236.map)\n\t    7f1e0ea9fce8 Lio/netty/handler/codec/MessageToMessageEncoder;.write(Lio/netty/channel/ChannelHandlerContext;Ljav (/tmp/perf-3236.map)\n\t    7f1e0d78ee34 Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;ZLio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ea90be8 Lorg/vertx/java/core/http/impl/VertxHttpHandler;.write(Lio/netty/channel/ChannelHandlerContext;Ljav (/tmp/perf-3236.map)\n\t    7f1e0d78ee34 Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;ZLio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d78cb7c Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;Lio/netty/channel/ChannelP (/tmp/perf-3236.map)\n\t    7f1e0ce34264 Lsun/reflect/DelegatingMethodAccessorImpl;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/ (/tmp/perf-3236.map)\n\t    7f1e0d0ce780 Lorg/mozilla/javascript/MemberBox;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; (/tmp/perf-3236.map)\n\t    7f1e0cf48460 Lorg/mozilla/javascript/NativeJavaMethod;.call(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascr (/tmp/perf-3236.map)\n\t    7f1e109c62cc Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0e2b91f0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1;.call(Lorg/mozilla/javascript/Co (/tmp/perf-3236.map)\n\t    7f1e109c5920 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8153bbd1 dev_pick_tx ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd7bf94 Lorg/mozilla/javascript/IdScriptableObject;.put(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cdaa0e0 Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0cd2226c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0ce3d93d Lio/netty/buffer/AbstractByteBufAllocator;.directBuffer(II)Lio/netty/buffer/ByteBuf; (/tmp/perf-3236.map)\n\t    7f1e0cff7380 Lio/netty/handler/codec/http/HttpObjectEncoder;.encode(Lio/netty/channel/ChannelHandlerContext;Ljav (/tmp/perf-3236.map)\n\t    7f1e0ea9fd28 Lio/netty/handler/codec/MessageToMessageEncoder;.write(Lio/netty/channel/ChannelHandlerContext;Ljav (/tmp/perf-3236.map)\n\t    7f1e0d78ee34 Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;ZLio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ea90be8 Lorg/vertx/java/core/http/impl/VertxHttpHandler;.write(Lio/netty/channel/ChannelHandlerContext;Ljav (/tmp/perf-3236.map)\n\t    7f1e0d78ee34 Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;ZLio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d78cb7c Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;Lio/netty/channel/ChannelP (/tmp/perf-3236.map)\n\t    7f1e0ce34264 Lsun/reflect/DelegatingMethodAccessorImpl;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/ (/tmp/perf-3236.map)\n\t    7f1e0d0ce780 Lorg/mozilla/javascript/MemberBox;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; (/tmp/perf-3236.map)\n\t    7f1e0cf48460 Lorg/mozilla/javascript/NativeJavaMethod;.call(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascr (/tmp/perf-3236.map)\n\t    7f1e109c62cc Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0e2b91f0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1;.call(Lorg/mozilla/javascript/Co (/tmp/perf-3236.map)\n\t    7f1e109c5920 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff812d67a4 common_file_perm ([kernel.kallsyms])\n\tffffffff812d6988 apparmor_file_permission ([kernel.kallsyms])\n\tffffffff8129c17c security_file_permission ([kernel.kallsyms])\n\tffffffff811772c1 rw_verify_area ([kernel.kallsyms])\n\tffffffff811775f8 vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d4f48b4 Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0f096c6c Lorg/mozilla/javascript/IdScriptableObject;.has(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cdaa07c Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0cd97bb0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8100122a hypercall_page ([kernel.kallsyms])\n\tffffffff8100aca2 check_events ([kernel.kallsyms])\n\tffffffff8104dffe __wake_up_sync_key ([kernel.kallsyms])\n\tffffffff8152f86e sock_def_readable ([kernel.kallsyms])\n\tffffffff8158f4c8 tcp_rcv_established ([kernel.kallsyms])\n\tffffffff815978df tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81599231 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0ce3d960 Lio/netty/buffer/AbstractByteBufAllocator;.directBuffer(II)Lio/netty/buffer/ByteBuf; (/tmp/perf-3236.map)\n\t    7f1e0d39ae18 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8103dcb1 pvclock_clocksource_read ([kernel.kallsyms])\n\tffffffff8100a8a9 xen_clocksource_get_cycles ([kernel.kallsyms])\n\tffffffff810948b7 getnstimeofday ([kernel.kallsyms])\n\tffffffff81094956 ktime_get_real ([kernel.kallsyms])\n\tffffffff81591f03 tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff81592bb1 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8158df0b tcp_ack ([kernel.kallsyms])\n\tffffffff8158f426 tcp_rcv_established ([kernel.kallsyms])\n\tffffffff815978df tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81599231 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cda9680 Lorg/mozilla/javascript/ScriptableObject$Slot;.getValue(Lorg/mozilla/javascript/Scriptable;)Ljava/l (/tmp/perf-3236.map)\n\t    7f1e0f99a268 Lorg/mozilla/javascript/ScriptRuntime;.nameOrFunction(Lorg/mozilla/javascript/Context;Lorg/mozilla/ (/tmp/perf-3236.map)\n\t    7f1e109c58b8 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0f664ed8 Lorg/mozilla/javascript/ScriptableObject$RelinkedSlot;.getValue(Lorg/mozilla/javascript/Scriptable; (/tmp/perf-3236.map)\n\t    7f1e0cd7f008 Lorg/mozilla/javascript/IdScriptableObject;.get(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0f99a2e4 Lorg/mozilla/javascript/ScriptRuntime;.nameOrFunction(Lorg/mozilla/javascript/Context;Lorg/mozilla/ (/tmp/perf-3236.map)\n\t    7f1e0cd2256c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0dcffaa4 Lio/netty/buffer/AbstractReferenceCountedByteBuf;.release()Z (/tmp/perf-3236.map)\n\t    7f1e0e78b800 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff81548de1 skb_dst_set_noref ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd89752 Lorg/mozilla/javascript/ScriptableObject;.createSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/S (/tmp/perf-3236.map)\n\t    7f1e0d4f4a70 Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0cd7bff4 Lorg/mozilla/javascript/IdScriptableObject;.put(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cdaa0e0 Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0cd97d60 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8158e090 tcp_ack ([kernel.kallsyms])\n\tffffffff8158f426 tcp_rcv_established ([kernel.kallsyms])\n\tffffffff815978df tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81599231 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd89707 Lorg/mozilla/javascript/ScriptableObject;.createSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/S (/tmp/perf-3236.map)\n\t    7f1e0d4f4a70 Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0cd7bff4 Lorg/mozilla/javascript/IdScriptableObject;.put(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cdaa0e0 Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0e9b32d4 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0d7924e8 Lorg/mozilla/javascript/optimizer/OptRuntime;.call2(Lorg/mozilla/javascript/Callable;Lorg/mozilla/j (/tmp/perf-3236.map)\n\t    7f1e0cd22658 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0feb77f3 Lio/netty/handler/codec/http/HttpObjectDecoder;.splitHeader(Lio/netty/util/internal/AppendableCharS (/tmp/perf-3236.map)\n\t    7f1e0df12508 Lio/netty/handler/codec/http/HttpObjectDecoder;.readHeaders(Lio/netty/buffer/ByteBuf;)Lio/netty/han (/tmp/perf-3236.map)\n\t    7f1e106aaac0 Lio/netty/handler/codec/http/HttpObjectDecoder;.decode(Lio/netty/channel/ChannelHandlerContext;Lio/ (/tmp/perf-3236.map)\n\t    7f1e0e78b758 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e10405a59 Lorg/mozilla/javascript/ScriptRuntime;.createFunctionActivation(Lorg/mozilla/javascript/NativeFunct (/tmp/perf-3236.map)\n\t    7f1e0e78a0ec Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0d792284 Lorg/mozilla/javascript/optimizer/OptRuntime;.call2(Lorg/mozilla/javascript/Callable;Lorg/mozilla/j (/tmp/perf-3236.map)\n\t    7f1e0cd98230 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0facf809 Lio/netty/buffer/AbstractByteBuf;.writeBytes([B)Lio/netty/buffer/ByteBuf; (/tmp/perf-3236.map)\n\t    7f1e0cff73e4 Lio/netty/handler/codec/http/HttpObjectEncoder;.encode(Lio/netty/channel/ChannelHandlerContext;Ljav (/tmp/perf-3236.map)\n\t    7f1e0ea9fd28 Lio/netty/handler/codec/MessageToMessageEncoder;.write(Lio/netty/channel/ChannelHandlerContext;Ljav (/tmp/perf-3236.map)\n\t    7f1e0d78ee34 Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;ZLio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ea90be8 Lorg/vertx/java/core/http/impl/VertxHttpHandler;.write(Lio/netty/channel/ChannelHandlerContext;Ljav (/tmp/perf-3236.map)\n\t    7f1e0d78ee34 Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;ZLio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d78cb7c Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;Lio/netty/channel/ChannelP (/tmp/perf-3236.map)\n\t    7f1e0ce34264 Lsun/reflect/DelegatingMethodAccessorImpl;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/ (/tmp/perf-3236.map)\n\t    7f1e0d0ce780 Lorg/mozilla/javascript/MemberBox;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; (/tmp/perf-3236.map)\n\t    7f1e0cf48460 Lorg/mozilla/javascript/NativeJavaMethod;.call(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascr (/tmp/perf-3236.map)\n\t    7f1e109c62cc Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0e2b91f0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1;.call(Lorg/mozilla/javascript/Co (/tmp/perf-3236.map)\n\t    7f1e109c5920 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d4f49c8 Lorg/mozilla/javascript/ScriptableObject;.getSlot(Ljava/lang/String;II)Lorg/mozilla/javascript/Scri (/tmp/perf-3236.map)\n\t    7f1e0f096c6c Lorg/mozilla/javascript/IdScriptableObject;.has(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cdaa10c Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0cd97cd0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0ea9fc54 Lio/netty/handler/codec/MessageToMessageEncoder;.write(Lio/netty/channel/ChannelHandlerContext;Ljav (/tmp/perf-3236.map)\n\t    7f1e0d78ee34 Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;ZLio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ea90be8 Lorg/vertx/java/core/http/impl/VertxHttpHandler;.write(Lio/netty/channel/ChannelHandlerContext;Ljav (/tmp/perf-3236.map)\n\t    7f1e0d78ee34 Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;ZLio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d78cb7c Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;Lio/netty/channel/ChannelP (/tmp/perf-3236.map)\n\t    7f1e0ce34264 Lsun/reflect/DelegatingMethodAccessorImpl;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/ (/tmp/perf-3236.map)\n\t    7f1e0d0ce780 Lorg/mozilla/javascript/MemberBox;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; (/tmp/perf-3236.map)\n\t    7f1e0cf48460 Lorg/mozilla/javascript/NativeJavaMethod;.call(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascr (/tmp/perf-3236.map)\n\t    7f1e109c62cc Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0e2b91f0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1;.call(Lorg/mozilla/javascript/Co (/tmp/perf-3236.map)\n\t    7f1e109c5920 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0f99bbfb Lio/netty/handler/codec/http/HttpHeaders;.hash(Ljava/lang/CharSequence;)I (/tmp/perf-3236.map)\n\t    7f1e0df124b4 Lio/netty/handler/codec/http/HttpObjectDecoder;.readHeaders(Lio/netty/buffer/ByteBuf;)Lio/netty/han (/tmp/perf-3236.map)\n\t    7f1e106aaac0 Lio/netty/handler/codec/http/HttpObjectDecoder;.decode(Lio/netty/channel/ChannelHandlerContext;Lio/ (/tmp/perf-3236.map)\n\t    7f1e0e78b758 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd7efd4 Lorg/mozilla/javascript/IdScriptableObject;.get(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e10405da4 Lorg/mozilla/javascript/ScriptRuntime;.createFunctionActivation(Lorg/mozilla/javascript/NativeFunct (/tmp/perf-3236.map)\n\t    7f1e0e9b312c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0d7924e8 Lorg/mozilla/javascript/optimizer/OptRuntime;.call2(Lorg/mozilla/javascript/Callable;Lorg/mozilla/j (/tmp/perf-3236.map)\n\t    7f1e0cd22658 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cd7bf94 Lorg/mozilla/javascript/IdScriptableObject;.put(Ljava/lang/String;Lorg/mozilla/javascript/Scriptabl (/tmp/perf-3236.map)\n\t    7f1e0cdaa0e0 Lorg/mozilla/javascript/ScriptRuntime;.setObjectProp(Ljava/lang/Object;Ljava/lang/String;Ljava/lang (/tmp/perf-3236.map)\n\t    7f1e0e9b336c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0d7924e8 Lorg/mozilla/javascript/optimizer/OptRuntime;.call2(Lorg/mozilla/javascript/Callable;Lorg/mozilla/j (/tmp/perf-3236.map)\n\t    7f1e0cd22658 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cda909c Lorg/mozilla/javascript/IdScriptableObject;.setAttributes(Ljava/lang/String;I)V (/tmp/perf-3236.map)\n\t    7f1e10405fc0 Lorg/mozilla/javascript/ScriptRuntime;.createFunctionActivation(Lorg/mozilla/javascript/NativeFunct (/tmp/perf-3236.map)\n\t    7f1e0cd96c90 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0dc1779d Ljava/util/HashMap;.get(Ljava/lang/Object;)Ljava/lang/Object; (/tmp/perf-3236.map)\n\t    7f1e113008b8 Lorg/mozilla/javascript/NativeJavaObject;.get(Ljava/lang/String;Lorg/mozilla/javascript/Scriptable; (/tmp/perf-3236.map)\n\t    7f1e10086df8 Lorg/mozilla/javascript/ScriptRuntime;.getPropFunctionAndThis(Ljava/lang/Object;Ljava/lang/String;L (/tmp/perf-3236.map)\n\t    7f1e0cd97ec4 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d6d585c Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cea3aa0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e22141f1d read (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e0d8c180b Lsun/nio/ch/FileDispatcherImpl;.read0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0ea9cb88 Lsun/nio/ch/SocketChannelImpl;.read(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0cd626d4 Lio/netty/channel/socket/nio/NioSocketChannel;.doReadBytes(Lio/netty/buffer/ByteBuf;)I (/tmp/perf-3236.map)\n\t    7f1e0d39ae58 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0ca1c281 jint_disjoint_arraycopy (/tmp/perf-3236.map)\n\t    7f1e0cd22658 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2f50 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0dd024bc Lorg/mozilla/javascript/ScriptRuntime;.newObject(Ljava/lang/Object;Lorg/mozilla/javascript/Context; (/tmp/perf-3236.map)\n\t    7f1e0cd980ac Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d180ec7 Lsun/nio/ch/SocketChannelImpl;.writerCleanup()V (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8115e5d1 arch_local_irq_save ([kernel.kallsyms])\n\tffffffff81164dd4 __kmalloc_node_track_caller ([kernel.kallsyms])\n\tffffffff81533118 __alloc_skb ([kernel.kallsyms])\n\tffffffff815831a4 sk_stream_alloc_skb ([kernel.kallsyms])\n\tffffffff81583678 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d6d5688 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8100122a hypercall_page ([kernel.kallsyms])\n\tffffffff8100aca2 check_events ([kernel.kallsyms])\n\tffffffff8104dffe __wake_up_sync_key ([kernel.kallsyms])\n\tffffffff8152f86e sock_def_readable ([kernel.kallsyms])\n\tffffffff8158f4c8 tcp_rcv_established ([kernel.kallsyms])\n\tffffffff815978df tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81599231 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0cda909c Lorg/mozilla/javascript/IdScriptableObject;.setAttributes(Ljava/lang/String;I)V (/tmp/perf-3236.map)\n\t    7f1e10405ee8 Lorg/mozilla/javascript/ScriptRuntime;.createFunctionActivation(Lorg/mozilla/javascript/NativeFunct (/tmp/perf-3236.map)\n\t    7f1e0e78a0ec Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0d792284 Lorg/mozilla/javascript/optimizer/OptRuntime;.call2(Lorg/mozilla/javascript/Callable;Lorg/mozilla/j (/tmp/perf-3236.map)\n\t    7f1e0cd98230 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2e30 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c5810 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d4577a3 Ljava/util/ArrayList;.add(Ljava/lang/Object;)Z (/tmp/perf-3236.map)\n\t    7f1e0cff76e8 Lio/netty/handler/codec/http/HttpObjectEncoder;.encode(Lio/netty/channel/ChannelHandlerContext;Ljav (/tmp/perf-3236.map)\n\t    7f1e0ea9fd28 Lio/netty/handler/codec/MessageToMessageEncoder;.write(Lio/netty/channel/ChannelHandlerContext;Ljav (/tmp/perf-3236.map)\n\t    7f1e0d78ee34 Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;ZLio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ea90be8 Lorg/vertx/java/core/http/impl/VertxHttpHandler;.write(Lio/netty/channel/ChannelHandlerContext;Ljav (/tmp/perf-3236.map)\n\t    7f1e0d78ee34 Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;ZLio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d78cb7c Lio/netty/channel/AbstractChannelHandlerContext;.write(Ljava/lang/Object;Lio/netty/channel/ChannelP (/tmp/perf-3236.map)\n\t    7f1e0ce34264 Lsun/reflect/DelegatingMethodAccessorImpl;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/ (/tmp/perf-3236.map)\n\t    7f1e0d0ce780 Lorg/mozilla/javascript/MemberBox;.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; (/tmp/perf-3236.map)\n\t    7f1e0cf48460 Lorg/mozilla/javascript/NativeJavaMethod;.call(Lorg/mozilla/javascript/Context;Lorg/mozilla/javascr (/tmp/perf-3236.map)\n\t    7f1e109c62cc Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0e2b91f0 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1;.call(Lorg/mozilla/javascript/Co (/tmp/perf-3236.map)\n\t    7f1e109c5920 Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8108f741 __srcu_read_lock ([kernel.kallsyms])\n\tffffffff81177680 vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff8100ac88 xen_restore_fl_direct ([kernel.kallsyms])\n\tffffffff81541fb5 netif_rx.part.82 ([kernel.kallsyms])\n\tffffffff815420d0 netif_rx ([kernel.kallsyms])\n\tffffffff81471fa5 loopback_xmit ([kernel.kallsyms])\n\tffffffff81542b76 dev_hard_start_xmit ([kernel.kallsyms])\n\tffffffff8154310a dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e0d39b01b Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff815378ac skb_copy_datagram_iovec ([kernel.kallsyms])\n\tffffffff81585a45 tcp_recvmsg ([kernel.kallsyms])\n\tffffffff815a94cb inet_recvmsg ([kernel.kallsyms])\n\tffffffff81529e0c do_sock_read.isra.12 ([kernel.kallsyms])\n\tffffffff81529e77 sock_aio_read.part.13 ([kernel.kallsyms])\n\tffffffff81529ecd sock_aio_read ([kernel.kallsyms])\n\tffffffff81176e3a do_sync_read ([kernel.kallsyms])\n\tffffffff81177855 vfs_read ([kernel.kallsyms])\n\tffffffff811778ba sys_read ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f1d read (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e0d8c180b Lsun/nio/ch/FileDispatcherImpl;.read0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0ea9cb88 Lsun/nio/ch/SocketChannelImpl;.read(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0cd626d4 Lio/netty/channel/socket/nio/NioSocketChannel;.doReadBytes(Lio/netty/buffer/ByteBuf;)I (/tmp/perf-3236.map)\n\t    7f1e0d39ae58 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e10087933 Lorg/mozilla/javascript/ScriptRuntime;.getObjectProp(Ljava/lang/Object;Ljava/lang/String;Lorg/mozil (/tmp/perf-3236.map)\n\t    7f1e109c56bc Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e109c2d8c Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 (/tmp/perf-3236.map)\n\t    7f1e0cea3bb0 Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler;.doMessageReceived(Lorg/vertx/java/c (/tmp/perf-3236.map)\n\t    7f1e0ce42740 Lorg/vertx/java/core/net/impl/VertxHandler;.channelRead(Lio/netty/channel/ChannelHandlerContext;Lja (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0e78b8b0 Lio/netty/handler/codec/ByteToMessageDecoder;.channelRead(Lio/netty/channel/ChannelHandlerContext;L (/tmp/perf-3236.map)\n\t    7f1e0d8bccb4 Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelRead(Ljava/lang/Object;)Lio/netty/chann (/tmp/perf-3236.map)\n\t    7f1e0d39aefc Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\t    7f1e2215d0c0  (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n\njava  3278 cpu-clock: \n\tffffffff815339b6 skb_release_data.part.45 ([kernel.kallsyms])\n\tffffffff81533ad5 skb_release_data ([kernel.kallsyms])\n\tffffffff81533afe __kfree_skb ([kernel.kallsyms])\n\tffffffff8158afe3 tcp_clean_rtx_queue ([kernel.kallsyms])\n\tffffffff8158e0a1 tcp_ack ([kernel.kallsyms])\n\tffffffff8158f426 tcp_rcv_established ([kernel.kallsyms])\n\tffffffff815978df tcp_v4_do_rcv ([kernel.kallsyms])\n\tffffffff81599231 tcp_v4_rcv ([kernel.kallsyms])\n\tffffffff81574d65 ip_local_deliver_finish ([kernel.kallsyms])\n\tffffffff815750c8 ip_local_deliver ([kernel.kallsyms])\n\tffffffff81574a1d ip_rcv_finish ([kernel.kallsyms])\n\tffffffff81575305 ip_rcv ([kernel.kallsyms])\n\tffffffff8154080e __netif_receive_skb ([kernel.kallsyms])\n\tffffffff81540ad1 process_backlog ([kernel.kallsyms])\n\tffffffff81541df4 net_rx_action ([kernel.kallsyms])\n\tffffffff8106e428 __do_softirq ([kernel.kallsyms])\n\tffffffff816643ac call_softirq ([kernel.kallsyms])\n\tffffffff81016295 do_softirq ([kernel.kallsyms])\n\tffffffff8106da94 local_bh_enable ([kernel.kallsyms])\n\tffffffff81542fd9 dev_queue_xmit ([kernel.kallsyms])\n\tffffffff8157996b ip_finish_output ([kernel.kallsyms])\n\tffffffff8157a4b8 ip_output ([kernel.kallsyms])\n\tffffffff81579bc9 ip_local_out ([kernel.kallsyms])\n\tffffffff81579d21 ip_queue_xmit ([kernel.kallsyms])\n\tffffffff81591e0d tcp_transmit_skb ([kernel.kallsyms])\n\tffffffff81592927 tcp_write_xmit ([kernel.kallsyms])\n\tffffffff81592bd6 __tcp_push_pending_frames ([kernel.kallsyms])\n\tffffffff81583ae9 tcp_sendmsg ([kernel.kallsyms])\n\tffffffff815a9544 inet_sendmsg ([kernel.kallsyms])\n\tffffffff81529c84 do_sock_write.isra.10 ([kernel.kallsyms])\n\tffffffff81529d03 sock_aio_write ([kernel.kallsyms])\n\tffffffff81176d1a do_sync_write ([kernel.kallsyms])\n\tffffffff811776dd vfs_write ([kernel.kallsyms])\n\tffffffff8117794a sys_write ([kernel.kallsyms])\n\tffffffff81662142 system_call_fastpath ([kernel.kallsyms])\n\t    7f1e22141f7d write (/lib/x86_64-linux-gnu/libc-2.15.so)\n\t    7f1e11300e8b Lsun/nio/ch/FileDispatcherImpl;.write0(Ljava/io/FileDescriptor;JI)I (/tmp/perf-3236.map)\n\t    7f1e0cffe6c8 Lsun/nio/ch/SocketChannelImpl;.write(Ljava/nio/ByteBuffer;)I (/tmp/perf-3236.map)\n\t    7f1e0d6db35c Lio/netty/buffer/PooledUnsafeDirectByteBuf;.readBytes(Ljava/nio/channels/GatheringByteChannel;I)I (/tmp/perf-3236.map)\n\t    7f1e0d6d5630 Lio/netty/channel/nio/AbstractNioByteChannel;.doWrite(Lio/netty/channel/ChannelOutboundBuffer;)V (/tmp/perf-3236.map)\n\t    7f1e0cd133fc Lio/netty/channel/AbstractChannel$AbstractUnsafe;.flush0()V (/tmp/perf-3236.map)\n\t    7f1e0da8fd28 Lio/netty/channel/DefaultChannelPipeline$HeadContext;.flush(Lio/netty/channel/ChannelHandlerContext (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0da8f3e4 Lio/netty/channel/ChannelOutboundHandlerAdapter;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0ea99d64 Lio/netty/channel/ChannelDuplexHandler;.flush(Lio/netty/channel/ChannelHandlerContext;)V (/tmp/perf-3236.map)\n\t    7f1e0d77cdd4 Lio/netty/channel/AbstractChannelHandlerContext;.flush()Lio/netty/channel/ChannelHandlerContext; (/tmp/perf-3236.map)\n\t    7f1e0fa56204 Lorg/vertx/java/core/net/impl/VertxHandler;.channelReadComplete(Lio/netty/channel/ChannelHandlerCon (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0ff1f264 Lio/netty/handler/codec/ByteToMessageDecoder;.channelReadComplete(Lio/netty/channel/ChannelHandlerC (/tmp/perf-3236.map)\n\t    7f1e0f08fd0c Lio/netty/channel/AbstractChannelHandlerContext;.fireChannelReadComplete()Lio/netty/channel/Channel (/tmp/perf-3236.map)\n\t    7f1e0d39af78 Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe;.read()V (/tmp/perf-3236.map)\n\t    7f1e102a43a8 Lio/netty/channel/nio/NioEventLoop;.processSelectedKey(Ljava/nio/channels/SelectionKey;Lio/netty/ch (/tmp/perf-3236.map)\n\t    7f1e0f666c14 Lio/netty/channel/nio/NioEventLoop;.processSelectedKeysOptimized([Ljava/nio/channels/SelectionKey;) (/tmp/perf-3236.map)\n\t    7f1e0d49c9fc Lio/netty/channel/nio/NioEventLoop;.processSelectedKeys()V (/tmp/perf-3236.map)\n\t    7f1e119a6974 Lio/netty/channel/nio/NioEventLoop;.run()V (/tmp/perf-3236.map)\n\t    7f1e0c9d12e0 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9d1325 Interpreter (/tmp/perf-3236.map)\n\t    7f1e0c9ca4e7 call_stub (/tmp/perf-3236.map)\n\t    7f1e213b270e JavaCalls::call_helper(JavaValue*, methodHandle*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3a3f JavaCalls::call_virtual(JavaValue*, KlassHandle, Symbol*, Symbol*, JavaCallArguments*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213b3edf JavaCalls::call_virtual(JavaValue*, Handle, KlassHandle, Symbol*, Symbol*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e213ed668 thread_entry(JavaThread*, Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e217015c8 JavaThread::thread_main_inner() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e2170181c JavaThread::run() (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e215c2ba2 java_start(Thread*) (/mnt/openjdk8/build/linux-x86_64-normal-server-release/jdk/lib/amd64/server/libjvm.so)\n\t    7f1e21c41e9a start_thread (/lib/x86_64-linux-gnu/libpthread-2.15.so)\n"
  },
  {
    "path": "test/results/perf-cycles-instructions-01-collapsed-addrs.txt",
    "content": "cksum;_start;__libc_start_main;main;cksum 31\ncksum;cksum 6\ncksum;cksum;__GI___fread_unlocked;_IO_file_xsgetn;_IO_file_read;entry_SYSCALL_64_fastpath;sys_read;vfs_read;__vfs_read;ext4_file_read_iter 1\ncksum;main;cksum 19\nnoploop;[unknown <552f0000552f>] 1\nnoploop;[unknown <774db3aa23>] 1\nnoploop;main 274\n"
  },
  {
    "path": "test/results/perf-cycles-instructions-01-collapsed-all.txt",
    "content": "cksum;_start;__libc_start_main;main;cksum 31\ncksum;cksum 6\ncksum;cksum;__GI___fread_unlocked;_IO_file_xsgetn;_IO_file_read;entry_SYSCALL_64_fastpath_[k];sys_read_[k];vfs_read_[k];__vfs_read_[k];ext4_file_read_iter_[k] 1\ncksum;main;cksum 19\nnoploop;[unknown] 2\nnoploop;main 274\n"
  },
  {
    "path": "test/results/perf-cycles-instructions-01-collapsed-jit.txt",
    "content": "cksum;_start;__libc_start_main;main;cksum 31\ncksum;cksum 6\ncksum;cksum;__GI___fread_unlocked;_IO_file_xsgetn;_IO_file_read;entry_SYSCALL_64_fastpath;sys_read;vfs_read;__vfs_read;ext4_file_read_iter 1\ncksum;main;cksum 19\nnoploop;[unknown] 2\nnoploop;main 274\n"
  },
  {
    "path": "test/results/perf-cycles-instructions-01-collapsed-kernel.txt",
    "content": "cksum;_start;__libc_start_main;main;cksum 31\ncksum;cksum 6\ncksum;cksum;__GI___fread_unlocked;_IO_file_xsgetn;_IO_file_read;entry_SYSCALL_64_fastpath_[k];sys_read_[k];vfs_read_[k];__vfs_read_[k];ext4_file_read_iter_[k] 1\ncksum;main;cksum 19\nnoploop;[unknown] 2\nnoploop;main 274\n"
  },
  {
    "path": "test/results/perf-cycles-instructions-01-collapsed-pid.txt",
    "content": "cksum-?;_start;__libc_start_main;main;cksum 31\ncksum-?;cksum 6\ncksum-?;cksum;__GI___fread_unlocked;_IO_file_xsgetn;_IO_file_read;entry_SYSCALL_64_fastpath;sys_read;vfs_read;__vfs_read;ext4_file_read_iter 1\ncksum-?;main;cksum 19\nnoploop-?;[unknown] 2\nnoploop-?;main 274\n"
  },
  {
    "path": "test/results/perf-cycles-instructions-01-collapsed-tid.txt",
    "content": "cksum-?/21804;cksum 5\ncksum-?/21804;cksum;__GI___fread_unlocked;_IO_file_xsgetn;_IO_file_read;entry_SYSCALL_64_fastpath;sys_read;vfs_read;__vfs_read;ext4_file_read_iter 1\ncksum-?/21807;_start;__libc_start_main;main;cksum 31\ncksum-?/21807;cksum 1\ncksum-?/21807;main;cksum 19\nnoploop-?/21796;[unknown] 1\nnoploop-?/21796;main 136\nnoploop-?/21797;[unknown] 1\nnoploop-?/21797;main 138\n"
  },
  {
    "path": "test/results/perf-dd-stacks-01-collapsed-addrs.txt",
    "content": "dd;[unknown <0>];read 10101010\ndd;[unknown <0>];read;system_call;__fdget_pos 10101010\ndd;[unknown <0>];read;system_call;sys_read;vfs_read;fsnotify 10101010\ndd;[unknown <0>];write;system_call;sys_write 10101010\ndd;[unknown <0>];write;system_call;sys_write;vfs_write;fsnotify;__srcu_read_unlock 20202020\ndd;[unknown <0>];write;system_call;sys_write;vfs_write;rw_verify_area 10101010\ndd;[unknown <7f2eb2b31c2c>];[dd <31ef>] 10101010\ndd;write;system_call;sys_write;__fdget_pos;__fdget;__fget_light 10101010\ndd;write;system_call;sys_write;vfs_write;fsnotify;__srcu_read_unlock 10101010\n"
  },
  {
    "path": "test/results/perf-dd-stacks-01-collapsed-all.txt",
    "content": "dd;[unknown];[dd] 10101010\ndd;[unknown];read 10101010\ndd;[unknown];read;system_call_[k];__fdget_pos_[k] 10101010\ndd;[unknown];read;system_call_[k];sys_read_[k];vfs_read_[k];fsnotify_[k] 10101010\ndd;[unknown];write;system_call_[k];sys_write_[k] 10101010\ndd;[unknown];write;system_call_[k];sys_write_[k];vfs_write_[k];fsnotify_[k];__srcu_read_unlock_[k] 20202020\ndd;[unknown];write;system_call_[k];sys_write_[k];vfs_write_[k];rw_verify_area_[k] 10101010\ndd;write;system_call_[k];sys_write_[k];__fdget_pos_[k];__fdget_[k];__fget_light_[k] 10101010\ndd;write;system_call_[k];sys_write_[k];vfs_write_[k];fsnotify_[k];__srcu_read_unlock_[k] 10101010\n"
  },
  {
    "path": "test/results/perf-dd-stacks-01-collapsed-jit.txt",
    "content": "dd;[unknown];[dd] 10101010\ndd;[unknown];read 10101010\ndd;[unknown];read;system_call;__fdget_pos 10101010\ndd;[unknown];read;system_call;sys_read;vfs_read;fsnotify 10101010\ndd;[unknown];write;system_call;sys_write 10101010\ndd;[unknown];write;system_call;sys_write;vfs_write;fsnotify;__srcu_read_unlock 20202020\ndd;[unknown];write;system_call;sys_write;vfs_write;rw_verify_area 10101010\ndd;write;system_call;sys_write;__fdget_pos;__fdget;__fget_light 10101010\ndd;write;system_call;sys_write;vfs_write;fsnotify;__srcu_read_unlock 10101010\n"
  },
  {
    "path": "test/results/perf-dd-stacks-01-collapsed-kernel.txt",
    "content": "dd;[unknown];[dd] 10101010\ndd;[unknown];read 10101010\ndd;[unknown];read;system_call_[k];__fdget_pos_[k] 10101010\ndd;[unknown];read;system_call_[k];sys_read_[k];vfs_read_[k];fsnotify_[k] 10101010\ndd;[unknown];write;system_call_[k];sys_write_[k] 10101010\ndd;[unknown];write;system_call_[k];sys_write_[k];vfs_write_[k];fsnotify_[k];__srcu_read_unlock_[k] 20202020\ndd;[unknown];write;system_call_[k];sys_write_[k];vfs_write_[k];rw_verify_area_[k] 10101010\ndd;write;system_call_[k];sys_write_[k];__fdget_pos_[k];__fdget_[k];__fget_light_[k] 10101010\ndd;write;system_call_[k];sys_write_[k];vfs_write_[k];fsnotify_[k];__srcu_read_unlock_[k] 10101010\n"
  },
  {
    "path": "test/results/perf-dd-stacks-01-collapsed-pid.txt",
    "content": "dd-?;[unknown];[dd] 10101010\ndd-?;[unknown];read 10101010\ndd-?;[unknown];read;system_call;__fdget_pos 10101010\ndd-?;[unknown];read;system_call;sys_read;vfs_read;fsnotify 10101010\ndd-?;[unknown];write;system_call;sys_write 10101010\ndd-?;[unknown];write;system_call;sys_write;vfs_write;fsnotify;__srcu_read_unlock 20202020\ndd-?;[unknown];write;system_call;sys_write;vfs_write;rw_verify_area 10101010\ndd-?;write;system_call;sys_write;__fdget_pos;__fdget;__fget_light 10101010\ndd-?;write;system_call;sys_write;vfs_write;fsnotify;__srcu_read_unlock 10101010\n"
  },
  {
    "path": "test/results/perf-dd-stacks-01-collapsed-tid.txt",
    "content": "dd-?/29776;[unknown];[dd] 10101010\ndd-?/29776;[unknown];read 10101010\ndd-?/29776;[unknown];read;system_call;__fdget_pos 10101010\ndd-?/29776;[unknown];read;system_call;sys_read;vfs_read;fsnotify 10101010\ndd-?/29776;[unknown];write;system_call;sys_write 10101010\ndd-?/29776;[unknown];write;system_call;sys_write;vfs_write;fsnotify;__srcu_read_unlock 20202020\ndd-?/29776;[unknown];write;system_call;sys_write;vfs_write;rw_verify_area 10101010\ndd-?/29776;write;system_call;sys_write;__fdget_pos;__fdget;__fget_light 10101010\ndd-?/29776;write;system_call;sys_write;vfs_write;fsnotify;__srcu_read_unlock 10101010\n"
  },
  {
    "path": "test/results/perf-funcab-cmd-01-collapsed-addrs.txt",
    "content": "func_ab;__libc_start_main;main;func_a 81\nfunc_ab;__libc_start_main;main;func_b 88\n"
  },
  {
    "path": "test/results/perf-funcab-cmd-01-collapsed-all.txt",
    "content": "func_ab;__libc_start_main;main;func_a 81\nfunc_ab;__libc_start_main;main;func_b 88\n"
  },
  {
    "path": "test/results/perf-funcab-cmd-01-collapsed-jit.txt",
    "content": "func_ab;__libc_start_main;main;func_a 81\nfunc_ab;__libc_start_main;main;func_b 88\n"
  },
  {
    "path": "test/results/perf-funcab-cmd-01-collapsed-kernel.txt",
    "content": "func_ab;__libc_start_main;main;func_a 81\nfunc_ab;__libc_start_main;main;func_b 88\n"
  },
  {
    "path": "test/results/perf-funcab-cmd-01-collapsed-pid.txt",
    "content": "func_ab-?;__libc_start_main;main;func_a 81\nfunc_ab-?;__libc_start_main;main;func_b 88\n"
  },
  {
    "path": "test/results/perf-funcab-cmd-01-collapsed-tid.txt",
    "content": "func_ab-?/15285;__libc_start_main;main;func_a 81\nfunc_ab-?/15285;__libc_start_main;main;func_b 88\n"
  },
  {
    "path": "test/results/perf-funcab-pid-01-collapsed-addrs.txt",
    "content": "func_ab;__libc_start_main;main;func_a 112\nfunc_ab;__libc_start_main;main;func_b 116\n"
  },
  {
    "path": "test/results/perf-funcab-pid-01-collapsed-all.txt",
    "content": "func_ab;__libc_start_main;main;func_a 112\nfunc_ab;__libc_start_main;main;func_b 116\n"
  },
  {
    "path": "test/results/perf-funcab-pid-01-collapsed-jit.txt",
    "content": "func_ab;__libc_start_main;main;func_a 112\nfunc_ab;__libc_start_main;main;func_b 116\n"
  },
  {
    "path": "test/results/perf-funcab-pid-01-collapsed-kernel.txt",
    "content": "func_ab;__libc_start_main;main;func_a 112\nfunc_ab;__libc_start_main;main;func_b 116\n"
  },
  {
    "path": "test/results/perf-funcab-pid-01-collapsed-pid.txt",
    "content": "func_ab-?;__libc_start_main;main;func_a 112\nfunc_ab-?;__libc_start_main;main;func_b 116\n"
  },
  {
    "path": "test/results/perf-funcab-pid-01-collapsed-tid.txt",
    "content": "func_ab-?/15294;__libc_start_main;main;func_a 112\nfunc_ab-?/15294;__libc_start_main;main;func_b 116\n"
  },
  {
    "path": "test/results/perf-iperf-stacks-pidtid-01-collapsed-addrs.txt",
    "content": "iperf;[unknown <0>];[unknown <7f258c0008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg 1\niperf;[unknown <0>];[unknown <7f258c0008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;sk_wait_data;schedule_timeout;schedule;__schedule;check_events;xen_hypercall_xen_version 1\niperf;[unknown <0>];[unknown <7f258c0008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_event_data_recv 1\niperf;[unknown <0>];[unknown <7f258c0008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;skb_copy_datagram_iter;copy_user_enhanced_fast_string 2\niperf;[unknown <0>];[unknown <7f258c0008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_space_adjust 1\niperf;[unknown <0>];[unknown <7f258c0008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;tcp_recvmsg 1\niperf;[unknown <0>];[unknown <7f25900008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom 1\niperf;[unknown <0>];[unknown <7f25900008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;_raw_spin_lock_bh 1\niperf;[unknown <0>];[unknown <7f25900008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;sk_wait_data;schedule_timeout 1\niperf;[unknown <0>];[unknown <7f25900008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;sk_wait_data;schedule_timeout;schedule;__schedule;check_events;xen_hypercall_xen_version 2\niperf;[unknown <0>];[unknown <7f25900008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv 1\niperf;[unknown <0>];[unknown <7f25900008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_rearm_rto;sk_reset_timer;mod_timer;check_events;xen_hypercall_xen_version 1\niperf;[unknown <0>];[unknown <7f25900008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv 1\niperf;[unknown <0>];[unknown <7f25900008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;ipv4_dst_check 1\niperf;[unknown <0>];[unknown <7f25900008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established 1\niperf;[unknown <0>];[unknown <7f25900008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;check_events;xen_hypercall_xen_version 1\niperf;[unknown <0>];[unknown <7f25900008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit;netif_rx 1\niperf;[unknown <0>];[unknown <7f25900008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;kfree_skb_partial;skb_release_head_state 1\niperf;[unknown <0>];[unknown <7f25900008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;skb_copy_datagram_iter;copy_user_enhanced_fast_string 2\niperf;[unknown <0>];[unknown <7f25900008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sockfd_lookup_light;__fget_light 1\niperf;[unknown <0>];[unknown <7f25980008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;sk_wait_data;schedule_timeout;schedule;__schedule;check_events;xen_hypercall_xen_version 7\niperf;[unknown <0>];[unknown <7f25980008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;__kfree_skb;skb_release_all;skb_release_data;put_page;put_compound_page;__put_compound_page;free_compound_page;check_events;xen_hypercall_xen_version 1\niperf;[unknown <0>];[unknown <7f25980008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_check_space;sk_stream_write_space;__wake_up;check_events;xen_hypercall_xen_version 2\niperf;[unknown <0>];[unknown <7f25980008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;sock_def_readable 1\niperf;[unknown <0>];[unknown <7f25980008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action 1\niperf;[unknown <0>];[unknown <7f25980008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;__memmove 1\niperf;[unknown <0>];[unknown <7f25980008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;__kmalloc_reserve.isra.32 1\niperf;[unknown <0>];[unknown <7f25980008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;kfree_skbmem 1\niperf;[unknown <0>];[unknown <7f25980008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;skb_copy_datagram_iter;copy_user_enhanced_fast_string 3\niperf;[unknown <0>];[unknown <7f25980008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;tcp_grow_window.isra.27 1\niperf;[unknown <0>];[unknown <7f259c0008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg 1\niperf;[unknown <0>];[unknown <7f259c0008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;sk_wait_data;schedule_timeout;schedule;__schedule;check_events;xen_hypercall_xen_version 4\niperf;[unknown <0>];[unknown <7f259c0008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_check_space;sk_stream_write_space;__wake_up;check_events;xen_hypercall_xen_version 1\niperf;[unknown <0>];[unknown <7f259c0008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;sock_put 1\niperf;[unknown <0>];[unknown <7f259c0008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv 1\niperf;[unknown <0>];[unknown <7f259c0008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_check_space;sk_stream_write_space;__wake_up;check_events;xen_hypercall_xen_version 1\niperf;[unknown <0>];[unknown <7f259c0008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;__alloc_skb;__kmalloc_reserve.isra.32;kmalloc_slab 1\niperf;[unknown <0>];[unknown <7f259c0008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;netif_rx;ktime_get_with_offset 1\niperf;[unknown <0>];[unknown <7f259c0008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;netif_rx;netif_rx_internal 1\niperf;[unknown <0>];[unknown <7f259c0008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;skb_copy_datagram_iter 1\niperf;[unknown <0>];[unknown <7f259c0008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;skb_copy_datagram_iter;copy_user_enhanced_fast_string 1\niperf;[unknown <0>];[unknown <7f259c0008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;tcp_event_data_recv 1\niperf;[unknown <0>];[unknown <7f259c0008f0>];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sockfd_lookup_light;__fget_light 1\niperf;[unknown <20000>];[iperf <2c5f>];__vdso_gettimeofday 1\niperf;[unknown <20000>];[iperf <2d13>] 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;__fdget_pos 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;copy_from_iter 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;release_sock 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_push 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;__alloc_skb 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;__raw_callee_save___pv_queued_spin_unlock 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;copy_user_enhanced_fast_string 24\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_page_frag_refill;skb_page_frag_refill;alloc_pages_current 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_page_frag_refill;skb_page_frag_refill;alloc_pages_current;__alloc_pages_nodemask;get_page_from_freelist;__zone_watermark_ok 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_page_frag_refill;skb_page_frag_refill;alloc_pages_current;policy_zonelist 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb;kmem_cache_alloc_node;_cond_resched;preempt_schedule_common;__schedule;check_events;xen_hypercall_xen_version 3\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_stream_wait_memory;finish_wait;_raw_spin_lock_irqsave 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_stream_wait_memory;schedule_timeout;schedule;__schedule;check_events;xen_hypercall_xen_version 18\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;sk_reset_timer 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv 2\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_prequeue;__wake_up_sync_key;check_events;xen_hypercall_xen_version 8\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_prequeue;_raw_spin_lock_irqsave 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;raw_local_deliver 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;net_rx_action 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;netif_rx;ktime_get_with_offset 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;sk_free 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;tcp_wfree 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;do_softirq 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_v4_send_check 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;ip_queue_xmit 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_schedule_loss_probe;sk_reset_timer;mod_timer;_raw_spin_lock_irqsave 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;__ip_local_out_sk 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;__sk_dst_check;ipv4_dst_check 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;check_events;xen_hypercall_xen_version 2\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;__inet_lookup_established 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;dst_release 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_prequeue;__wake_up_sync_key;check_events;xen_hypercall_xen_version 2\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;sk_free 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;loopback_xmit 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;validate_xmit_skb.isra.102.part.103 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;skb_clone;__skb_clone 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;skb_clone;__skb_clone;__copy_skb_header 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;tcp_v4_md5_lookup 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_send_mss;tcp_current_mss;tcp_established_options;tcp_md5_do_lookup 1\niperf;[unknown <20000>];[libpthread-2.19.so <f35d>];int_ret_from_sys_call;syscall_return_slowpath;prepare_exit_to_usermode;schedule;__schedule;check_events;xen_hypercall_xen_version 3\niperf;__libc_recv 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;sk_wait_data 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;sk_wait_data;finish_wait 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;sk_wait_data;schedule_timeout;schedule;__schedule;check_events;xen_hypercall_xen_version 5\niperf;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_cleanup_rbuf;tcp_send_ack;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;__inet_lookup_established 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;__alloc_skb 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;tcp_transmit_skb 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;skb_copy_datagram_iter;copy_user_enhanced_fast_string 12\niperf;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_release_cb 1\niperf;__pthread_disable_asynccancel 1\niperf;check_events;xen_hypercall_xen_version 3\niperf;xen_irq_enable_direct_end;check_events;xen_hypercall_xen_version 1\nmultilog;_dl_sysdep_start;dl_main;_dl_relocate_object;page_fault;do_page_fault;check_events;xen_hypercall_xen_version 1\nrun;[unknown <752f3a646e616d6d>];__GI___strncmp_ssse3;page_fault;do_page_fault;__do_page_fault;handle_mm_fault;filemap_map_pages;do_set_pte;xen_hypercall_mmu_update 1\nrun;__execve;return_from_execve;sys_execve;do_execveat_common.isra.31;search_binary_handler;load_script;search_binary_handler;load_elf_binary;setup_arg_pages;shift_arg_pages;tlb_finish_mmu;tlb_flush_mmu_free;free_pages_and_swap_cache;release_pages;free_hot_cold_page_list 1\n"
  },
  {
    "path": "test/results/perf-iperf-stacks-pidtid-01-collapsed-all.txt",
    "content": "iperf;[unknown];[iperf] 1\niperf;[unknown];[iperf];__vdso_gettimeofday_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];__fdget_pos_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];copy_from_iter_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];release_sock_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_push_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__alloc_skb_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__raw_callee_save___pv_queued_spin_unlock_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];copy_user_enhanced_fast_string_[k] 24\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_page_frag_refill_[k];skb_page_frag_refill_[k];alloc_pages_current_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_page_frag_refill_[k];skb_page_frag_refill_[k];alloc_pages_current_[k];__alloc_pages_nodemask_[k];get_page_from_freelist_[k];__zone_watermark_ok_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_page_frag_refill_[k];skb_page_frag_refill_[k];alloc_pages_current_[k];policy_zonelist_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];kmem_cache_alloc_node_[k];_cond_resched_[k];preempt_schedule_common_[k];__schedule_[k];check_events_[k];xen_hypercall_xen_version_[k] 3\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_wait_memory_[k];finish_wait_[k];_raw_spin_lock_irqsave_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_wait_memory_[k];schedule_timeout_[k];schedule_[k];__schedule_[k];check_events_[k];xen_hypercall_xen_version_[k] 18\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];sk_reset_timer_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k] 2\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_prequeue_[k];__wake_up_sync_key_[k];check_events_[k];xen_hypercall_xen_version_[k] 8\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_prequeue_[k];_raw_spin_lock_irqsave_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];raw_local_deliver_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];net_rx_action_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];dev_queue_xmit_sk_[k];__dev_queue_xmit_[k];dev_hard_start_xmit_[k];loopback_xmit_[k];netif_rx_[k];ktime_get_with_offset_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];dev_queue_xmit_sk_[k];__dev_queue_xmit_[k];dev_hard_start_xmit_[k];loopback_xmit_[k];sk_free_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];dev_queue_xmit_sk_[k];__dev_queue_xmit_[k];dev_hard_start_xmit_[k];loopback_xmit_[k];tcp_wfree_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];do_softirq_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_v4_send_check_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];ip_queue_xmit_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_schedule_loss_probe_[k];sk_reset_timer_[k];mod_timer_[k];_raw_spin_lock_irqsave_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];__ip_local_out_sk_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];__sk_dst_check_[k];ipv4_dst_check_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];check_events_[k];xen_hypercall_xen_version_[k] 2\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];__inet_lookup_established_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];dst_release_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_prequeue_[k];__wake_up_sync_key_[k];check_events_[k];xen_hypercall_xen_version_[k] 2\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];dev_queue_xmit_sk_[k];__dev_queue_xmit_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];dev_queue_xmit_sk_[k];__dev_queue_xmit_[k];dev_hard_start_xmit_[k];loopback_xmit_[k];sk_free_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];dev_queue_xmit_sk_[k];__dev_queue_xmit_[k];loopback_xmit_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];dev_queue_xmit_sk_[k];__dev_queue_xmit_[k];validate_xmit_skb.isra.102.part.103_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];skb_clone_[k];__skb_clone_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];skb_clone_[k];__skb_clone_[k];__copy_skb_header_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];tcp_v4_md5_lookup_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_send_mss_[k];tcp_current_mss_[k];tcp_established_options_[k];tcp_md5_do_lookup_[k] 1\niperf;[unknown];[libpthread-2.19.so];int_ret_from_sys_call_[k];syscall_return_slowpath_[k];prepare_exit_to_usermode_[k];schedule_[k];__schedule_[k];check_events_[k];xen_hypercall_xen_version_[k] 3\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];_raw_spin_lock_bh_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];sk_wait_data_[k];schedule_timeout_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];sk_wait_data_[k];schedule_timeout_[k];schedule_[k];__schedule_[k];check_events_[k];xen_hypercall_xen_version_[k] 14\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];__kfree_skb_[k];skb_release_all_[k];skb_release_data_[k];put_page_[k];put_compound_page_[k];__put_compound_page_[k];free_compound_page_[k];check_events_[k];xen_hypercall_xen_version_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_rearm_rto_[k];sk_reset_timer_[k];mod_timer_[k];check_events_[k];xen_hypercall_xen_version_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_check_space_[k];sk_stream_write_space_[k];__wake_up_[k];check_events_[k];xen_hypercall_xen_version_[k] 3\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];ipv4_dst_check_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];sock_def_readable_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_event_data_recv_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];check_events_[k];xen_hypercall_xen_version_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];__memmove_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];sock_put_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_check_space_[k];sk_stream_write_space_[k];__wake_up_[k];check_events_[k];xen_hypercall_xen_version_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];__tcp_ack_snd_check_[k];tcp_send_ack_[k];__alloc_skb_[k];__kmalloc_reserve.isra.32_[k];kmalloc_slab_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];__tcp_ack_snd_check_[k];tcp_send_ack_[k];__kmalloc_reserve.isra.32_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];__tcp_ack_snd_check_[k];tcp_send_ack_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];dev_queue_xmit_sk_[k];__dev_queue_xmit_[k];dev_hard_start_xmit_[k];loopback_xmit_[k];netif_rx_[k];ktime_get_with_offset_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];__tcp_ack_snd_check_[k];tcp_send_ack_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];dev_queue_xmit_sk_[k];__dev_queue_xmit_[k];dev_hard_start_xmit_[k];loopback_xmit_[k];netif_rx_[k];netif_rx_internal_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];__tcp_ack_snd_check_[k];tcp_send_ack_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];dev_queue_xmit_sk_[k];__dev_queue_xmit_[k];dev_hard_start_xmit_[k];netif_rx_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];kfree_skb_partial_[k];skb_release_head_state_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];kfree_skbmem_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];skb_copy_datagram_iter_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];skb_copy_datagram_iter_[k];copy_user_enhanced_fast_string_[k] 8\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_event_data_recv_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_grow_window.isra.27_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_space_adjust_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];tcp_recvmsg_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sockfd_lookup_light_[k];__fget_light_[k] 2\niperf;__libc_recv 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];sk_wait_data_[k] 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];sk_wait_data_[k];finish_wait_[k] 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];sk_wait_data_[k];schedule_timeout_[k];schedule_[k];__schedule_[k];check_events_[k];xen_hypercall_xen_version_[k] 5\niperf;__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_cleanup_rbuf_[k];tcp_send_ack_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];__inet_lookup_established_[k] 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k] 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k] 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];__tcp_ack_snd_check_[k];__alloc_skb_[k] 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];__tcp_ack_snd_check_[k];tcp_send_ack_[k];tcp_transmit_skb_[k] 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];__tcp_ack_snd_check_[k];tcp_send_ack_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];dev_queue_xmit_sk_[k];__dev_queue_xmit_[k] 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];__tcp_ack_snd_check_[k];tcp_send_ack_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];dev_queue_xmit_sk_[k];__dev_queue_xmit_[k];dev_hard_start_xmit_[k] 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];skb_copy_datagram_iter_[k];copy_user_enhanced_fast_string_[k] 12\niperf;__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_release_cb_[k] 1\niperf;__pthread_disable_asynccancel 1\niperf;check_events_[k];xen_hypercall_xen_version_[k] 3\niperf;xen_irq_enable_direct_end_[k];check_events_[k];xen_hypercall_xen_version_[k] 1\nmultilog;_dl_sysdep_start;dl_main;_dl_relocate_object;page_fault_[k];do_page_fault_[k];check_events_[k];xen_hypercall_xen_version_[k] 1\nrun;[unknown];__GI___strncmp_ssse3;page_fault_[k];do_page_fault_[k];__do_page_fault_[k];handle_mm_fault_[k];filemap_map_pages_[k];do_set_pte_[k];xen_hypercall_mmu_update_[k] 1\nrun;__execve;return_from_execve_[k];sys_execve_[k];do_execveat_common.isra.31_[k];search_binary_handler_[k];load_script_[k];search_binary_handler_[k];load_elf_binary_[k];setup_arg_pages_[k];shift_arg_pages_[k];tlb_finish_mmu_[k];tlb_flush_mmu_free_[k];free_pages_and_swap_cache_[k];release_pages_[k];free_hot_cold_page_list_[k] 1\n"
  },
  {
    "path": "test/results/perf-iperf-stacks-pidtid-01-collapsed-jit.txt",
    "content": "iperf;[unknown];[iperf] 1\niperf;[unknown];[iperf];__vdso_gettimeofday 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;__fdget_pos 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;copy_from_iter 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;release_sock 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_push 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;__alloc_skb 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;__raw_callee_save___pv_queued_spin_unlock 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;copy_user_enhanced_fast_string 24\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_page_frag_refill;skb_page_frag_refill;alloc_pages_current 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_page_frag_refill;skb_page_frag_refill;alloc_pages_current;__alloc_pages_nodemask;get_page_from_freelist;__zone_watermark_ok 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_page_frag_refill;skb_page_frag_refill;alloc_pages_current;policy_zonelist 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb;kmem_cache_alloc_node;_cond_resched;preempt_schedule_common;__schedule;check_events;xen_hypercall_xen_version 3\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_stream_wait_memory;finish_wait;_raw_spin_lock_irqsave 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_stream_wait_memory;schedule_timeout;schedule;__schedule;check_events;xen_hypercall_xen_version 18\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;sk_reset_timer 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv 2\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_prequeue;__wake_up_sync_key;check_events;xen_hypercall_xen_version 8\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_prequeue;_raw_spin_lock_irqsave 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;raw_local_deliver 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;net_rx_action 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;netif_rx;ktime_get_with_offset 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;sk_free 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;tcp_wfree 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;do_softirq 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_v4_send_check 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;ip_queue_xmit 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_schedule_loss_probe;sk_reset_timer;mod_timer;_raw_spin_lock_irqsave 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;__ip_local_out_sk 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;__sk_dst_check;ipv4_dst_check 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;check_events;xen_hypercall_xen_version 2\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;__inet_lookup_established 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;dst_release 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_prequeue;__wake_up_sync_key;check_events;xen_hypercall_xen_version 2\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;sk_free 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;loopback_xmit 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;validate_xmit_skb.isra.102.part.103 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;skb_clone;__skb_clone 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;skb_clone;__skb_clone;__copy_skb_header 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;tcp_v4_md5_lookup 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_send_mss;tcp_current_mss;tcp_established_options;tcp_md5_do_lookup 1\niperf;[unknown];[libpthread-2.19.so];int_ret_from_sys_call;syscall_return_slowpath;prepare_exit_to_usermode;schedule;__schedule;check_events;xen_hypercall_xen_version 3\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;_raw_spin_lock_bh 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;sk_wait_data;schedule_timeout 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;sk_wait_data;schedule_timeout;schedule;__schedule;check_events;xen_hypercall_xen_version 14\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;__kfree_skb;skb_release_all;skb_release_data;put_page;put_compound_page;__put_compound_page;free_compound_page;check_events;xen_hypercall_xen_version 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_rearm_rto;sk_reset_timer;mod_timer;check_events;xen_hypercall_xen_version 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_check_space;sk_stream_write_space;__wake_up;check_events;xen_hypercall_xen_version 3\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;ipv4_dst_check 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;sock_def_readable 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_event_data_recv 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;check_events;xen_hypercall_xen_version 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;__memmove 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;sock_put 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_check_space;sk_stream_write_space;__wake_up;check_events;xen_hypercall_xen_version 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;__alloc_skb;__kmalloc_reserve.isra.32;kmalloc_slab 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;__kmalloc_reserve.isra.32 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;netif_rx;ktime_get_with_offset 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;netif_rx;netif_rx_internal 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit;netif_rx 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;kfree_skb_partial;skb_release_head_state 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;kfree_skbmem 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;skb_copy_datagram_iter 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;skb_copy_datagram_iter;copy_user_enhanced_fast_string 8\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;tcp_event_data_recv 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;tcp_grow_window.isra.27 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_space_adjust 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;tcp_recvmsg 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sockfd_lookup_light;__fget_light 2\niperf;__libc_recv 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;sk_wait_data 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;sk_wait_data;finish_wait 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;sk_wait_data;schedule_timeout;schedule;__schedule;check_events;xen_hypercall_xen_version 5\niperf;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_cleanup_rbuf;tcp_send_ack;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;__inet_lookup_established 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;__alloc_skb 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;tcp_transmit_skb 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;skb_copy_datagram_iter;copy_user_enhanced_fast_string 12\niperf;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_release_cb 1\niperf;__pthread_disable_asynccancel 1\niperf;check_events;xen_hypercall_xen_version 3\niperf;xen_irq_enable_direct_end;check_events;xen_hypercall_xen_version 1\nmultilog;_dl_sysdep_start;dl_main;_dl_relocate_object;page_fault;do_page_fault;check_events;xen_hypercall_xen_version 1\nrun;[unknown];__GI___strncmp_ssse3;page_fault;do_page_fault;__do_page_fault;handle_mm_fault;filemap_map_pages;do_set_pte;xen_hypercall_mmu_update 1\nrun;__execve;return_from_execve;sys_execve;do_execveat_common.isra.31;search_binary_handler;load_script;search_binary_handler;load_elf_binary;setup_arg_pages;shift_arg_pages;tlb_finish_mmu;tlb_flush_mmu_free;free_pages_and_swap_cache;release_pages;free_hot_cold_page_list 1\n"
  },
  {
    "path": "test/results/perf-iperf-stacks-pidtid-01-collapsed-kernel.txt",
    "content": "iperf;[unknown];[iperf] 1\niperf;[unknown];[iperf];__vdso_gettimeofday_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];__fdget_pos_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];copy_from_iter_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];release_sock_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_push_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__alloc_skb_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__raw_callee_save___pv_queued_spin_unlock_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];copy_user_enhanced_fast_string_[k] 24\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_page_frag_refill_[k];skb_page_frag_refill_[k];alloc_pages_current_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_page_frag_refill_[k];skb_page_frag_refill_[k];alloc_pages_current_[k];__alloc_pages_nodemask_[k];get_page_from_freelist_[k];__zone_watermark_ok_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_page_frag_refill_[k];skb_page_frag_refill_[k];alloc_pages_current_[k];policy_zonelist_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];kmem_cache_alloc_node_[k];_cond_resched_[k];preempt_schedule_common_[k];__schedule_[k];check_events_[k];xen_hypercall_xen_version_[k] 3\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_wait_memory_[k];finish_wait_[k];_raw_spin_lock_irqsave_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_wait_memory_[k];schedule_timeout_[k];schedule_[k];__schedule_[k];check_events_[k];xen_hypercall_xen_version_[k] 18\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];sk_reset_timer_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k] 2\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_prequeue_[k];__wake_up_sync_key_[k];check_events_[k];xen_hypercall_xen_version_[k] 8\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_prequeue_[k];_raw_spin_lock_irqsave_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];raw_local_deliver_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];net_rx_action_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];dev_queue_xmit_sk_[k];__dev_queue_xmit_[k];dev_hard_start_xmit_[k];loopback_xmit_[k];netif_rx_[k];ktime_get_with_offset_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];dev_queue_xmit_sk_[k];__dev_queue_xmit_[k];dev_hard_start_xmit_[k];loopback_xmit_[k];sk_free_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];dev_queue_xmit_sk_[k];__dev_queue_xmit_[k];dev_hard_start_xmit_[k];loopback_xmit_[k];tcp_wfree_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];do_softirq_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_v4_send_check_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];ip_queue_xmit_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_schedule_loss_probe_[k];sk_reset_timer_[k];mod_timer_[k];_raw_spin_lock_irqsave_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];__ip_local_out_sk_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];__sk_dst_check_[k];ipv4_dst_check_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];check_events_[k];xen_hypercall_xen_version_[k] 2\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];__inet_lookup_established_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];dst_release_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_prequeue_[k];__wake_up_sync_key_[k];check_events_[k];xen_hypercall_xen_version_[k] 2\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];dev_queue_xmit_sk_[k];__dev_queue_xmit_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];dev_queue_xmit_sk_[k];__dev_queue_xmit_[k];dev_hard_start_xmit_[k];loopback_xmit_[k];sk_free_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];dev_queue_xmit_sk_[k];__dev_queue_xmit_[k];loopback_xmit_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];dev_queue_xmit_sk_[k];__dev_queue_xmit_[k];validate_xmit_skb.isra.102.part.103_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];skb_clone_[k];__skb_clone_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];skb_clone_[k];__skb_clone_[k];__copy_skb_header_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_push_one_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];tcp_v4_md5_lookup_[k] 1\niperf;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath_[k];sys_write_[k];vfs_write_[k];__vfs_write_[k];sock_write_iter_[k];sock_sendmsg_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_send_mss_[k];tcp_current_mss_[k];tcp_established_options_[k];tcp_md5_do_lookup_[k] 1\niperf;[unknown];[libpthread-2.19.so];int_ret_from_sys_call_[k];syscall_return_slowpath_[k];prepare_exit_to_usermode_[k];schedule_[k];__schedule_[k];check_events_[k];xen_hypercall_xen_version_[k] 3\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];_raw_spin_lock_bh_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];sk_wait_data_[k];schedule_timeout_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];sk_wait_data_[k];schedule_timeout_[k];schedule_[k];__schedule_[k];check_events_[k];xen_hypercall_xen_version_[k] 14\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];__kfree_skb_[k];skb_release_all_[k];skb_release_data_[k];put_page_[k];put_compound_page_[k];__put_compound_page_[k];free_compound_page_[k];check_events_[k];xen_hypercall_xen_version_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_rearm_rto_[k];sk_reset_timer_[k];mod_timer_[k];check_events_[k];xen_hypercall_xen_version_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_check_space_[k];sk_stream_write_space_[k];__wake_up_[k];check_events_[k];xen_hypercall_xen_version_[k] 3\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];ipv4_dst_check_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];sock_def_readable_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_event_data_recv_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];check_events_[k];xen_hypercall_xen_version_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];__memmove_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];sock_put_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_check_space_[k];sk_stream_write_space_[k];__wake_up_[k];check_events_[k];xen_hypercall_xen_version_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];__tcp_ack_snd_check_[k];tcp_send_ack_[k];__alloc_skb_[k];__kmalloc_reserve.isra.32_[k];kmalloc_slab_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];__tcp_ack_snd_check_[k];tcp_send_ack_[k];__kmalloc_reserve.isra.32_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];__tcp_ack_snd_check_[k];tcp_send_ack_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];dev_queue_xmit_sk_[k];__dev_queue_xmit_[k];dev_hard_start_xmit_[k];loopback_xmit_[k];netif_rx_[k];ktime_get_with_offset_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];__tcp_ack_snd_check_[k];tcp_send_ack_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];dev_queue_xmit_sk_[k];__dev_queue_xmit_[k];dev_hard_start_xmit_[k];loopback_xmit_[k];netif_rx_[k];netif_rx_internal_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];__tcp_ack_snd_check_[k];tcp_send_ack_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];dev_queue_xmit_sk_[k];__dev_queue_xmit_[k];dev_hard_start_xmit_[k];netif_rx_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];kfree_skb_partial_[k];skb_release_head_state_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];kfree_skbmem_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];skb_copy_datagram_iter_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];skb_copy_datagram_iter_[k];copy_user_enhanced_fast_string_[k] 8\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_event_data_recv_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_grow_window.isra.27_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_space_adjust_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];tcp_recvmsg_[k] 1\niperf;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sockfd_lookup_light_[k];__fget_light_[k] 2\niperf;__libc_recv 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];sk_wait_data_[k] 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];sk_wait_data_[k];finish_wait_[k] 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];sk_wait_data_[k];schedule_timeout_[k];schedule_[k];__schedule_[k];check_events_[k];xen_hypercall_xen_version_[k] 5\niperf;__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_cleanup_rbuf_[k];tcp_send_ack_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];__inet_lookup_established_[k] 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];__local_bh_enable_ip_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k] 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k] 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];__tcp_ack_snd_check_[k];__alloc_skb_[k] 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];__tcp_ack_snd_check_[k];tcp_send_ack_[k];tcp_transmit_skb_[k] 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];__tcp_ack_snd_check_[k];tcp_send_ack_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];dev_queue_xmit_sk_[k];__dev_queue_xmit_[k] 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];__tcp_ack_snd_check_[k];tcp_send_ack_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_sk_[k];ip_output_[k];ip_finish_output_[k];ip_finish_output2_[k];dev_queue_xmit_sk_[k];__dev_queue_xmit_[k];dev_hard_start_xmit_[k] 1\niperf;__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_prequeue_process_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];skb_copy_datagram_iter_[k];copy_user_enhanced_fast_string_[k] 12\niperf;__libc_recv;entry_SYSCALL_64_fastpath_[k];sys_recvfrom_[k];SYSC_recvfrom_[k];sock_recvmsg_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_release_cb_[k] 1\niperf;__pthread_disable_asynccancel 1\niperf;check_events_[k];xen_hypercall_xen_version_[k] 3\niperf;xen_irq_enable_direct_end_[k];check_events_[k];xen_hypercall_xen_version_[k] 1\nmultilog;_dl_sysdep_start;dl_main;_dl_relocate_object;page_fault_[k];do_page_fault_[k];check_events_[k];xen_hypercall_xen_version_[k] 1\nrun;[unknown];__GI___strncmp_ssse3;page_fault_[k];do_page_fault_[k];__do_page_fault_[k];handle_mm_fault_[k];filemap_map_pages_[k];do_set_pte_[k];xen_hypercall_mmu_update_[k] 1\nrun;__execve;return_from_execve_[k];sys_execve_[k];do_execveat_common.isra.31_[k];search_binary_handler_[k];load_script_[k];search_binary_handler_[k];load_elf_binary_[k];setup_arg_pages_[k];shift_arg_pages_[k];tlb_finish_mmu_[k];tlb_flush_mmu_free_[k];free_pages_and_swap_cache_[k];release_pages_[k];free_hot_cold_page_list_[k] 1\n"
  },
  {
    "path": "test/results/perf-iperf-stacks-pidtid-01-collapsed-pid.txt",
    "content": "iperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom 1\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg 1\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg 1\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;_raw_spin_lock_bh 1\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;sk_wait_data;schedule_timeout 1\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;sk_wait_data;schedule_timeout;schedule;__schedule;check_events;xen_hypercall_xen_version 14\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv 1\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;__kfree_skb;skb_release_all;skb_release_data;put_page;put_compound_page;__put_compound_page;free_compound_page;check_events;xen_hypercall_xen_version 1\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_rearm_rto;sk_reset_timer;mod_timer;check_events;xen_hypercall_xen_version 1\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_check_space;sk_stream_write_space;__wake_up;check_events;xen_hypercall_xen_version 3\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv 1\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;ipv4_dst_check 1\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;sock_def_readable 1\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_event_data_recv 1\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established 1\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action 1\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;check_events;xen_hypercall_xen_version 1\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;__memmove 1\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;sock_put 1\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv 1\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_check_space;sk_stream_write_space;__wake_up;check_events;xen_hypercall_xen_version 1\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;__alloc_skb;__kmalloc_reserve.isra.32;kmalloc_slab 1\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;__kmalloc_reserve.isra.32 1\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;netif_rx;ktime_get_with_offset 1\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;netif_rx;netif_rx_internal 1\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit;netif_rx 1\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;kfree_skb_partial;skb_release_head_state 1\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;kfree_skbmem 1\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;skb_copy_datagram_iter 1\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;skb_copy_datagram_iter;copy_user_enhanced_fast_string 8\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;tcp_event_data_recv 1\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;tcp_grow_window.isra.27 1\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_space_adjust 1\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;tcp_recvmsg 1\niperf-27409;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sockfd_lookup_light;__fget_light 2\niperf-27409;__libc_recv 1\niperf-27409;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;sk_wait_data 1\niperf-27409;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;sk_wait_data;finish_wait 1\niperf-27409;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;sk_wait_data;schedule_timeout;schedule;__schedule;check_events;xen_hypercall_xen_version 5\niperf-27409;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_cleanup_rbuf;tcp_send_ack;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;__inet_lookup_established 1\niperf-27409;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish 1\niperf-27409;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv 1\niperf-27409;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;__alloc_skb 1\niperf-27409;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;tcp_transmit_skb 1\niperf-27409;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit 1\niperf-27409;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit 1\niperf-27409;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;skb_copy_datagram_iter;copy_user_enhanced_fast_string 12\niperf-27409;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_release_cb 1\niperf-27409;__pthread_disable_asynccancel 1\niperf-27409;check_events;xen_hypercall_xen_version 3\niperf-28735;[unknown];[iperf] 1\niperf-28735;[unknown];[iperf];__vdso_gettimeofday 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;__fdget_pos 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;copy_from_iter 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;release_sock 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_push 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;__alloc_skb 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;__raw_callee_save___pv_queued_spin_unlock 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;copy_user_enhanced_fast_string 24\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_page_frag_refill;skb_page_frag_refill;alloc_pages_current 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_page_frag_refill;skb_page_frag_refill;alloc_pages_current;__alloc_pages_nodemask;get_page_from_freelist;__zone_watermark_ok 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_page_frag_refill;skb_page_frag_refill;alloc_pages_current;policy_zonelist 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb;kmem_cache_alloc_node;_cond_resched;preempt_schedule_common;__schedule;check_events;xen_hypercall_xen_version 3\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_stream_wait_memory;finish_wait;_raw_spin_lock_irqsave 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_stream_wait_memory;schedule_timeout;schedule;__schedule;check_events;xen_hypercall_xen_version 18\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;sk_reset_timer 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv 2\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_prequeue;__wake_up_sync_key;check_events;xen_hypercall_xen_version 8\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_prequeue;_raw_spin_lock_irqsave 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;raw_local_deliver 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;net_rx_action 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;netif_rx;ktime_get_with_offset 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;sk_free 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;tcp_wfree 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;do_softirq 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_v4_send_check 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;ip_queue_xmit 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_schedule_loss_probe;sk_reset_timer;mod_timer;_raw_spin_lock_irqsave 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;__ip_local_out_sk 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;__sk_dst_check;ipv4_dst_check 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;check_events;xen_hypercall_xen_version 2\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;__inet_lookup_established 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;dst_release 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_prequeue;__wake_up_sync_key;check_events;xen_hypercall_xen_version 2\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;sk_free 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;loopback_xmit 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;validate_xmit_skb.isra.102.part.103 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;skb_clone;__skb_clone 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;skb_clone;__skb_clone;__copy_skb_header 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;tcp_v4_md5_lookup 1\niperf-28735;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_send_mss;tcp_current_mss;tcp_established_options;tcp_md5_do_lookup 1\niperf-28735;[unknown];[libpthread-2.19.so];int_ret_from_sys_call;syscall_return_slowpath;prepare_exit_to_usermode;schedule;__schedule;check_events;xen_hypercall_xen_version 3\niperf-28735;xen_irq_enable_direct_end;check_events;xen_hypercall_xen_version 1\nmultilog-28797;_dl_sysdep_start;dl_main;_dl_relocate_object;page_fault;do_page_fault;check_events;xen_hypercall_xen_version 1\nrun-28796;[unknown];__GI___strncmp_ssse3;page_fault;do_page_fault;__do_page_fault;handle_mm_fault;filemap_map_pages;do_set_pte;xen_hypercall_mmu_update 1\nrun-28797;__execve;return_from_execve;sys_execve;do_execveat_common.isra.31;search_binary_handler;load_script;search_binary_handler;load_elf_binary;setup_arg_pages;shift_arg_pages;tlb_finish_mmu;tlb_flush_mmu_free;free_pages_and_swap_cache;release_pages;free_hot_cold_page_list 1\n"
  },
  {
    "path": "test/results/perf-iperf-stacks-pidtid-01-collapsed-tid.txt",
    "content": "iperf-27409/28741;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;sk_wait_data;schedule_timeout;schedule;__schedule;check_events;xen_hypercall_xen_version 7\niperf-27409/28741;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;__kfree_skb;skb_release_all;skb_release_data;put_page;put_compound_page;__put_compound_page;free_compound_page;check_events;xen_hypercall_xen_version 1\niperf-27409/28741;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_check_space;sk_stream_write_space;__wake_up;check_events;xen_hypercall_xen_version 2\niperf-27409/28741;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;sock_def_readable 1\niperf-27409/28741;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action 1\niperf-27409/28741;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;__memmove 1\niperf-27409/28741;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;__kmalloc_reserve.isra.32 1\niperf-27409/28741;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;kfree_skbmem 1\niperf-27409/28741;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;skb_copy_datagram_iter;copy_user_enhanced_fast_string 3\niperf-27409/28741;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;tcp_grow_window.isra.27 1\niperf-27409/28741;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;sk_wait_data;schedule_timeout;schedule;__schedule;check_events;xen_hypercall_xen_version 1\niperf-27409/28741;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv 1\niperf-27409/28741;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;__alloc_skb 1\niperf-27409/28741;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;skb_copy_datagram_iter;copy_user_enhanced_fast_string 3\niperf-27409/28741;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_release_cb 1\niperf-27409/28741;check_events;xen_hypercall_xen_version 1\niperf-27409/28742;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom 1\niperf-27409/28742;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;_raw_spin_lock_bh 1\niperf-27409/28742;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;sk_wait_data;schedule_timeout 1\niperf-27409/28742;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;sk_wait_data;schedule_timeout;schedule;__schedule;check_events;xen_hypercall_xen_version 2\niperf-27409/28742;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv 1\niperf-27409/28742;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_rearm_rto;sk_reset_timer;mod_timer;check_events;xen_hypercall_xen_version 1\niperf-27409/28742;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv 1\niperf-27409/28742;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;ipv4_dst_check 1\niperf-27409/28742;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established 1\niperf-27409/28742;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;check_events;xen_hypercall_xen_version 1\niperf-27409/28742;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit;netif_rx 1\niperf-27409/28742;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;kfree_skb_partial;skb_release_head_state 1\niperf-27409/28742;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;skb_copy_datagram_iter;copy_user_enhanced_fast_string 2\niperf-27409/28742;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sockfd_lookup_light;__fget_light 1\niperf-27409/28742;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;sk_wait_data;finish_wait 1\niperf-27409/28742;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;sk_wait_data;schedule_timeout;schedule;__schedule;check_events;xen_hypercall_xen_version 1\niperf-27409/28742;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_cleanup_rbuf;tcp_send_ack;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;__inet_lookup_established 1\niperf-27409/28742;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;tcp_transmit_skb 1\niperf-27409/28742;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;skb_copy_datagram_iter;copy_user_enhanced_fast_string 1\niperf-27409/28742;check_events;xen_hypercall_xen_version 1\niperf-27409/28743;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg 1\niperf-27409/28743;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;sk_wait_data;schedule_timeout;schedule;__schedule;check_events;xen_hypercall_xen_version 1\niperf-27409/28743;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_event_data_recv 1\niperf-27409/28743;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;skb_copy_datagram_iter;copy_user_enhanced_fast_string 2\niperf-27409/28743;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_space_adjust 1\niperf-27409/28743;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;tcp_recvmsg 1\niperf-27409/28743;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;sk_wait_data;schedule_timeout;schedule;__schedule;check_events;xen_hypercall_xen_version 1\niperf-27409/28743;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit 1\niperf-27409/28743;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit 1\niperf-27409/28743;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;skb_copy_datagram_iter;copy_user_enhanced_fast_string 6\niperf-27409/28744;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg 1\niperf-27409/28744;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;sk_wait_data;schedule_timeout;schedule;__schedule;check_events;xen_hypercall_xen_version 4\niperf-27409/28744;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_check_space;sk_stream_write_space;__wake_up;check_events;xen_hypercall_xen_version 1\niperf-27409/28744;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;sock_put 1\niperf-27409/28744;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv 1\niperf-27409/28744;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_check_space;sk_stream_write_space;__wake_up;check_events;xen_hypercall_xen_version 1\niperf-27409/28744;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;__alloc_skb;__kmalloc_reserve.isra.32;kmalloc_slab 1\niperf-27409/28744;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;netif_rx;ktime_get_with_offset 1\niperf-27409/28744;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;__tcp_ack_snd_check;tcp_send_ack;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;netif_rx;netif_rx_internal 1\niperf-27409/28744;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;skb_copy_datagram_iter 1\niperf-27409/28744;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;skb_copy_datagram_iter;copy_user_enhanced_fast_string 1\niperf-27409/28744;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;tcp_event_data_recv 1\niperf-27409/28744;[unknown];[unknown];__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sockfd_lookup_light;__fget_light 1\niperf-27409/28744;__libc_recv 1\niperf-27409/28744;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;sk_wait_data 1\niperf-27409/28744;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;sk_wait_data;schedule_timeout;schedule;__schedule;check_events;xen_hypercall_xen_version 2\niperf-27409/28744;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish 1\niperf-27409/28744;__libc_recv;entry_SYSCALL_64_fastpath;sys_recvfrom;SYSC_recvfrom;sock_recvmsg;inet_recvmsg;tcp_recvmsg;tcp_prequeue_process;tcp_v4_do_rcv;tcp_rcv_established;skb_copy_datagram_iter;copy_user_enhanced_fast_string 2\niperf-27409/28744;__pthread_disable_asynccancel 1\niperf-27409/28744;check_events;xen_hypercall_xen_version 1\niperf-28735/28736;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;__fdget_pos 1\niperf-28735/28736;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;copy_from_iter 1\niperf-28735/28736;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;copy_user_enhanced_fast_string 8\niperf-28735/28736;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_stream_wait_memory;schedule_timeout;schedule;__schedule;check_events;xen_hypercall_xen_version 4\niperf-28735/28736;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv 1\niperf-28735/28736;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_prequeue;__wake_up_sync_key;check_events;xen_hypercall_xen_version 1\niperf-28735/28736;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_prequeue;_raw_spin_lock_irqsave 1\niperf-28735/28736;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;tcp_wfree 1\niperf-28735/28736;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;do_softirq 1\niperf-28735/28736;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;check_events;xen_hypercall_xen_version 2\niperf-28735/28736;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action 1\niperf-28735/28736;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core 1\niperf-28735/28736;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;__inet_lookup_established 1\niperf-28735/28736;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit 1\niperf-28735/28736;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;skb_clone;__skb_clone 1\niperf-28735/28736;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;skb_clone;__skb_clone;__copy_skb_header 1\niperf-28735/28736;[unknown];[libpthread-2.19.so];int_ret_from_sys_call;syscall_return_slowpath;prepare_exit_to_usermode;schedule;__schedule;check_events;xen_hypercall_xen_version 1\niperf-28735/28737;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;release_sock 1\niperf-28735/28737;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_push 1\niperf-28735/28737;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;copy_user_enhanced_fast_string 7\niperf-28735/28737;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_page_frag_refill;skb_page_frag_refill;alloc_pages_current 1\niperf-28735/28737;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_page_frag_refill;skb_page_frag_refill;alloc_pages_current;policy_zonelist 1\niperf-28735/28737;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb;kmem_cache_alloc_node;_cond_resched;preempt_schedule_common;__schedule;check_events;xen_hypercall_xen_version 2\niperf-28735/28737;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_stream_wait_memory;finish_wait;_raw_spin_lock_irqsave 1\niperf-28735/28737;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_stream_wait_memory;schedule_timeout;schedule;__schedule;check_events;xen_hypercall_xen_version 4\niperf-28735/28737;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;sk_reset_timer 1\niperf-28735/28737;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit 1\niperf-28735/28737;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv 1\niperf-28735/28737;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_prequeue;__wake_up_sync_key;check_events;xen_hypercall_xen_version 3\niperf-28735/28737;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;ip_queue_xmit 1\niperf-28735/28737;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;__ip_local_out_sk 1\niperf-28735/28737;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;__sk_dst_check;ipv4_dst_check 1\niperf-28735/28737;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;dst_release 1\niperf-28735/28737;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_prequeue;__wake_up_sync_key;check_events;xen_hypercall_xen_version 2\niperf-28735/28737;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;sk_free 1\niperf-28735/28737;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_send_mss;tcp_current_mss;tcp_established_options;tcp_md5_do_lookup 1\niperf-28735/28737;[unknown];[libpthread-2.19.so];int_ret_from_sys_call;syscall_return_slowpath;prepare_exit_to_usermode;schedule;__schedule;check_events;xen_hypercall_xen_version 1\niperf-28735/28737;xen_irq_enable_direct_end;check_events;xen_hypercall_xen_version 1\niperf-28735/28738;[unknown];[iperf] 1\niperf-28735/28738;[unknown];[iperf];__vdso_gettimeofday 1\niperf-28735/28738;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;__alloc_skb 1\niperf-28735/28738;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;__raw_callee_save___pv_queued_spin_unlock 1\niperf-28735/28738;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;copy_user_enhanced_fast_string 3\niperf-28735/28738;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb;kmem_cache_alloc_node;_cond_resched;preempt_schedule_common;__schedule;check_events;xen_hypercall_xen_version 1\niperf-28735/28738;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_stream_wait_memory;schedule_timeout;schedule;__schedule;check_events;xen_hypercall_xen_version 6\niperf-28735/28738;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;net_rx_action 1\niperf-28735/28738;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;netif_rx;ktime_get_with_offset 1\niperf-28735/28738;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;sk_free 1\niperf-28735/28738;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb 1\niperf-28735/28738;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;loopback_xmit 1\niperf-28735/28738;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;dev_queue_xmit_sk;__dev_queue_xmit;validate_xmit_skb.isra.102.part.103 1\niperf-28735/28739;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;copy_user_enhanced_fast_string 6\niperf-28735/28739;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_page_frag_refill;skb_page_frag_refill;alloc_pages_current;__alloc_pages_nodemask;get_page_from_freelist;__zone_watermark_ok 1\niperf-28735/28739;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb 1\niperf-28735/28739;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;sk_stream_wait_memory;schedule_timeout;schedule;__schedule;check_events;xen_hypercall_xen_version 4\niperf-28735/28739;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push 1\niperf-28735/28739;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv 1\niperf-28735/28739;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_prequeue;__wake_up_sync_key;check_events;xen_hypercall_xen_version 4\niperf-28735/28739;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2;__local_bh_enable_ip;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;raw_local_deliver 1\niperf-28735/28739;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push;__tcp_push_pending_frames;tcp_write_xmit;tcp_v4_send_check 1\niperf-28735/28739;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit 1\niperf-28735/28739;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_schedule_loss_probe;sk_reset_timer;mod_timer;_raw_spin_lock_irqsave 1\niperf-28735/28739;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out_sk;ip_output;ip_finish_output;ip_finish_output2 1\niperf-28735/28739;[unknown];[libpthread-2.19.so];entry_SYSCALL_64_fastpath;sys_write;vfs_write;__vfs_write;sock_write_iter;sock_sendmsg;inet_sendmsg;tcp_sendmsg;tcp_push_one;tcp_write_xmit;tcp_transmit_skb;tcp_v4_md5_lookup 1\niperf-28735/28739;[unknown];[libpthread-2.19.so];int_ret_from_sys_call;syscall_return_slowpath;prepare_exit_to_usermode;schedule;__schedule;check_events;xen_hypercall_xen_version 1\nmultilog-28797/28797;_dl_sysdep_start;dl_main;_dl_relocate_object;page_fault;do_page_fault;check_events;xen_hypercall_xen_version 1\nrun-28796/28796;[unknown];__GI___strncmp_ssse3;page_fault;do_page_fault;__do_page_fault;handle_mm_fault;filemap_map_pages;do_set_pte;xen_hypercall_mmu_update 1\nrun-28797/28797;__execve;return_from_execve;sys_execve;do_execveat_common.isra.31;search_binary_handler;load_script;search_binary_handler;load_elf_binary;setup_arg_pages;shift_arg_pages;tlb_finish_mmu;tlb_flush_mmu_free;free_pages_and_swap_cache;release_pages;free_hot_cold_page_list 1\n"
  },
  {
    "path": "test/results/perf-java-faults-01-collapsed-addrs.txt",
    "content": "java;_int_malloc 2\njava;start_thread;_ZL10java_startP6Thread;_ZN10JavaThread3runEv;_ZN10JavaThread17thread_main_innerEv;_ZL12thread_entryP10JavaThreadP6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue6Handle11KlassHandleP6SymbolS5_P6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue11KlassHandleP6SymbolS4_P17JavaCallArgumentsP6Thread;_ZN9JavaCalls11call_helperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread;call_stub;java/lang/Thread:::run;Interpreter;java/util/concurrent/ThreadPoolExecutor$Worker:::run;java/util/concurrent/ThreadPoolExecutor:::runWorker;org/apache/tomcat/util/net/AprEndpoint$SocketProcessor:::run;org/apache/tomcat/util/net/AprEndpoint$SocketProcessor:::doRun;org/apache/coyote/AbstractProtocol$AbstractConnectionHandler:::process;org/apache/coyote/http11/AbstractHttp11Processor:::process;org/apache/catalina/connector/CoyoteAdapter:::service;org/apache/coyote/http11/AbstractHttp11Processor:::action;org/apache/tomcat/jni/Socket:::sendbb 1\njava;start_thread;_ZL10java_startP6Thread;_ZN10JavaThread3runEv;_ZN10JavaThread17thread_main_innerEv;_ZL12thread_entryP10JavaThreadP6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue6Handle11KlassHandleP6SymbolS5_P6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue11KlassHandleP6SymbolS4_P17JavaCallArgumentsP6Thread;_ZN9JavaCalls11call_helperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread;call_stub;net/spy/memcached/EVCacheConnection:::run;net/spy/memcached/MemcachedConnection:::handleIO;net/spy/memcached/MemcachedConnection:::handleIO;net/spy/memcached/MemcachedConnection:::handleReads;net/spy/memcached/protocol/binary/OperationImpl:::readFromBuffer;net/spy/memcached/protocol/binary/OperationImpl:::finishedPayload;net/spy/memcached/protocol/binary/GetOperationImpl:::decodePayload;net/spy/memcached/transcoders/TranscodeService$1:::call;XXX::XXX;java/util/zip/Inflater:::inflateBytes;Java_java_util_zip_Inflater_inflateBytes;inflate;__memmove_ssse3_back 18\njava;start_thread;_ZL10java_startP6Thread;_ZN10JavaThread3runEv;_ZN10JavaThread17thread_main_innerEv;_ZL12thread_entryP10JavaThreadP6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue6Handle11KlassHandleP6SymbolS5_P6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue11KlassHandleP6SymbolS4_P17JavaCallArgumentsP6Thread;_ZN9JavaCalls11call_helperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread;call_stub;net/spy/memcached/EVCacheConnection:::run;net/spy/memcached/MemcachedConnection:::handleIO;net/spy/memcached/MemcachedConnection:::handleIO;net/spy/memcached/MemcachedConnection:::handleReads;net/spy/memcached/protocol/binary/OperationImpl:::readFromBuffer;net/spy/memcached/protocol/binary/OperationImpl:::finishedPayload;net/spy/memcached/protocol/binary/GetOperationImpl:::decodePayload;net/spy/memcached/transcoders/TranscodeService$1:::call;com/XXX::XXX;java/util/zip/Inflater:::inflateBytes;Java_java_util_zip_Inflater_inflateBytes;inflate;__memmove_ssse3_back 1\nperf;__libc_start_main;main;run_builtin;cmd_record 40\nperf;do_lookup_x 27\nsleep;[unknown <6873756c66660036>];memcmp 24\nsleep;__execve;return_from_execve;sys_execve;do_execveat_common.isra.31;search_binary_handler;copy_user_enhanced_fast_string 1\nsleep;__execve;return_from_execve;sys_execve;do_execveat_common.isra.31;search_binary_handler;load_elf_binary;padzero;clear_user;__clear_user 2\nsleep;_dl_start_user;_dl_start 9\nsleep;_start 3\nsleep;handle_intel 72\n"
  },
  {
    "path": "test/results/perf-java-faults-01-collapsed-all.txt",
    "content": "java;_int_malloc 2\njava;start_thread;_ZL10java_startP6Thread;_ZN10JavaThread3runEv;_ZN10JavaThread17thread_main_innerEv;_ZL12thread_entryP10JavaThreadP6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue6Handle11KlassHandleP6SymbolS5_P6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue11KlassHandleP6SymbolS4_P17JavaCallArgumentsP6Thread;_ZN9JavaCalls11call_helperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread;call_stub_[j];java/lang/Thread:::run_[j];Interpreter_[j];java/util/concurrent/ThreadPoolExecutor$Worker:::run_[j];java/util/concurrent/ThreadPoolExecutor:::runWorker_[j];org/apache/tomcat/util/net/AprEndpoint$SocketProcessor:::run_[j];org/apache/tomcat/util/net/AprEndpoint$SocketProcessor:::doRun_[j];org/apache/coyote/AbstractProtocol$AbstractConnectionHandler:::process_[j];org/apache/coyote/http11/AbstractHttp11Processor:::process_[j];org/apache/catalina/connector/CoyoteAdapter:::service_[j];org/apache/coyote/http11/AbstractHttp11Processor:::action_[j];org/apache/tomcat/jni/Socket:::sendbb_[j] 1\njava;start_thread;_ZL10java_startP6Thread;_ZN10JavaThread3runEv;_ZN10JavaThread17thread_main_innerEv;_ZL12thread_entryP10JavaThreadP6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue6Handle11KlassHandleP6SymbolS5_P6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue11KlassHandleP6SymbolS4_P17JavaCallArgumentsP6Thread;_ZN9JavaCalls11call_helperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread;call_stub_[j];net/spy/memcached/EVCacheConnection:::run_[j];net/spy/memcached/MemcachedConnection:::handleIO_[j];net/spy/memcached/MemcachedConnection:::handleIO_[j];net/spy/memcached/MemcachedConnection:::handleReads_[j];net/spy/memcached/protocol/binary/OperationImpl:::readFromBuffer_[j];net/spy/memcached/protocol/binary/OperationImpl:::finishedPayload_[j];net/spy/memcached/protocol/binary/GetOperationImpl:::decodePayload_[j];net/spy/memcached/transcoders/TranscodeService$1:::call_[j];XXX::XXX_[j];java/util/zip/Inflater:::inflateBytes_[j];Java_java_util_zip_Inflater_inflateBytes;inflate;__memmove_ssse3_back 18\njava;start_thread;_ZL10java_startP6Thread;_ZN10JavaThread3runEv;_ZN10JavaThread17thread_main_innerEv;_ZL12thread_entryP10JavaThreadP6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue6Handle11KlassHandleP6SymbolS5_P6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue11KlassHandleP6SymbolS4_P17JavaCallArgumentsP6Thread;_ZN9JavaCalls11call_helperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread;call_stub_[j];net/spy/memcached/EVCacheConnection:::run_[j];net/spy/memcached/MemcachedConnection:::handleIO_[j];net/spy/memcached/MemcachedConnection:::handleIO_[j];net/spy/memcached/MemcachedConnection:::handleReads_[j];net/spy/memcached/protocol/binary/OperationImpl:::readFromBuffer_[j];net/spy/memcached/protocol/binary/OperationImpl:::finishedPayload_[j];net/spy/memcached/protocol/binary/GetOperationImpl:::decodePayload_[j];net/spy/memcached/transcoders/TranscodeService$1:::call_[j];com/XXX::XXX_[j];java/util/zip/Inflater:::inflateBytes_[j];Java_java_util_zip_Inflater_inflateBytes;inflate;__memmove_ssse3_back 1\nperf;__libc_start_main;main;run_builtin;cmd_record 40\nperf;do_lookup_x 27\nsleep;[unknown];memcmp 24\nsleep;__execve;return_from_execve_[k];sys_execve_[k];do_execveat_common.isra.31_[k];search_binary_handler_[k];copy_user_enhanced_fast_string_[k] 1\nsleep;__execve;return_from_execve_[k];sys_execve_[k];do_execveat_common.isra.31_[k];search_binary_handler_[k];load_elf_binary_[k];padzero_[k];clear_user_[k];__clear_user_[k] 2\nsleep;_dl_start_user;_dl_start 9\nsleep;_start 3\nsleep;handle_intel 72\n"
  },
  {
    "path": "test/results/perf-java-faults-01-collapsed-jit.txt",
    "content": "java;_int_malloc 2\njava;start_thread;_ZL10java_startP6Thread;_ZN10JavaThread3runEv;_ZN10JavaThread17thread_main_innerEv;_ZL12thread_entryP10JavaThreadP6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue6Handle11KlassHandleP6SymbolS5_P6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue11KlassHandleP6SymbolS4_P17JavaCallArgumentsP6Thread;_ZN9JavaCalls11call_helperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread;call_stub_[j];java/lang/Thread:::run_[j];Interpreter_[j];java/util/concurrent/ThreadPoolExecutor$Worker:::run_[j];java/util/concurrent/ThreadPoolExecutor:::runWorker_[j];org/apache/tomcat/util/net/AprEndpoint$SocketProcessor:::run_[j];org/apache/tomcat/util/net/AprEndpoint$SocketProcessor:::doRun_[j];org/apache/coyote/AbstractProtocol$AbstractConnectionHandler:::process_[j];org/apache/coyote/http11/AbstractHttp11Processor:::process_[j];org/apache/catalina/connector/CoyoteAdapter:::service_[j];org/apache/coyote/http11/AbstractHttp11Processor:::action_[j];org/apache/tomcat/jni/Socket:::sendbb_[j] 1\njava;start_thread;_ZL10java_startP6Thread;_ZN10JavaThread3runEv;_ZN10JavaThread17thread_main_innerEv;_ZL12thread_entryP10JavaThreadP6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue6Handle11KlassHandleP6SymbolS5_P6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue11KlassHandleP6SymbolS4_P17JavaCallArgumentsP6Thread;_ZN9JavaCalls11call_helperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread;call_stub_[j];net/spy/memcached/EVCacheConnection:::run_[j];net/spy/memcached/MemcachedConnection:::handleIO_[j];net/spy/memcached/MemcachedConnection:::handleIO_[j];net/spy/memcached/MemcachedConnection:::handleReads_[j];net/spy/memcached/protocol/binary/OperationImpl:::readFromBuffer_[j];net/spy/memcached/protocol/binary/OperationImpl:::finishedPayload_[j];net/spy/memcached/protocol/binary/GetOperationImpl:::decodePayload_[j];net/spy/memcached/transcoders/TranscodeService$1:::call_[j];XXX::XXX_[j];java/util/zip/Inflater:::inflateBytes_[j];Java_java_util_zip_Inflater_inflateBytes;inflate;__memmove_ssse3_back 18\njava;start_thread;_ZL10java_startP6Thread;_ZN10JavaThread3runEv;_ZN10JavaThread17thread_main_innerEv;_ZL12thread_entryP10JavaThreadP6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue6Handle11KlassHandleP6SymbolS5_P6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue11KlassHandleP6SymbolS4_P17JavaCallArgumentsP6Thread;_ZN9JavaCalls11call_helperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread;call_stub_[j];net/spy/memcached/EVCacheConnection:::run_[j];net/spy/memcached/MemcachedConnection:::handleIO_[j];net/spy/memcached/MemcachedConnection:::handleIO_[j];net/spy/memcached/MemcachedConnection:::handleReads_[j];net/spy/memcached/protocol/binary/OperationImpl:::readFromBuffer_[j];net/spy/memcached/protocol/binary/OperationImpl:::finishedPayload_[j];net/spy/memcached/protocol/binary/GetOperationImpl:::decodePayload_[j];net/spy/memcached/transcoders/TranscodeService$1:::call_[j];com/XXX::XXX_[j];java/util/zip/Inflater:::inflateBytes_[j];Java_java_util_zip_Inflater_inflateBytes;inflate;__memmove_ssse3_back 1\nperf;__libc_start_main;main;run_builtin;cmd_record 40\nperf;do_lookup_x 27\nsleep;[unknown];memcmp 24\nsleep;__execve;return_from_execve;sys_execve;do_execveat_common.isra.31;search_binary_handler;copy_user_enhanced_fast_string 1\nsleep;__execve;return_from_execve;sys_execve;do_execveat_common.isra.31;search_binary_handler;load_elf_binary;padzero;clear_user;__clear_user 2\nsleep;_dl_start_user;_dl_start 9\nsleep;_start 3\nsleep;handle_intel 72\n"
  },
  {
    "path": "test/results/perf-java-faults-01-collapsed-kernel.txt",
    "content": "java;_int_malloc 2\njava;start_thread;_ZL10java_startP6Thread;_ZN10JavaThread3runEv;_ZN10JavaThread17thread_main_innerEv;_ZL12thread_entryP10JavaThreadP6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue6Handle11KlassHandleP6SymbolS5_P6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue11KlassHandleP6SymbolS4_P17JavaCallArgumentsP6Thread;_ZN9JavaCalls11call_helperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread;call_stub;java/lang/Thread:::run;Interpreter;java/util/concurrent/ThreadPoolExecutor$Worker:::run;java/util/concurrent/ThreadPoolExecutor:::runWorker;org/apache/tomcat/util/net/AprEndpoint$SocketProcessor:::run;org/apache/tomcat/util/net/AprEndpoint$SocketProcessor:::doRun;org/apache/coyote/AbstractProtocol$AbstractConnectionHandler:::process;org/apache/coyote/http11/AbstractHttp11Processor:::process;org/apache/catalina/connector/CoyoteAdapter:::service;org/apache/coyote/http11/AbstractHttp11Processor:::action;org/apache/tomcat/jni/Socket:::sendbb 1\njava;start_thread;_ZL10java_startP6Thread;_ZN10JavaThread3runEv;_ZN10JavaThread17thread_main_innerEv;_ZL12thread_entryP10JavaThreadP6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue6Handle11KlassHandleP6SymbolS5_P6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue11KlassHandleP6SymbolS4_P17JavaCallArgumentsP6Thread;_ZN9JavaCalls11call_helperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread;call_stub;net/spy/memcached/EVCacheConnection:::run;net/spy/memcached/MemcachedConnection:::handleIO;net/spy/memcached/MemcachedConnection:::handleIO;net/spy/memcached/MemcachedConnection:::handleReads;net/spy/memcached/protocol/binary/OperationImpl:::readFromBuffer;net/spy/memcached/protocol/binary/OperationImpl:::finishedPayload;net/spy/memcached/protocol/binary/GetOperationImpl:::decodePayload;net/spy/memcached/transcoders/TranscodeService$1:::call;XXX::XXX;java/util/zip/Inflater:::inflateBytes;Java_java_util_zip_Inflater_inflateBytes;inflate;__memmove_ssse3_back 18\njava;start_thread;_ZL10java_startP6Thread;_ZN10JavaThread3runEv;_ZN10JavaThread17thread_main_innerEv;_ZL12thread_entryP10JavaThreadP6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue6Handle11KlassHandleP6SymbolS5_P6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue11KlassHandleP6SymbolS4_P17JavaCallArgumentsP6Thread;_ZN9JavaCalls11call_helperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread;call_stub;net/spy/memcached/EVCacheConnection:::run;net/spy/memcached/MemcachedConnection:::handleIO;net/spy/memcached/MemcachedConnection:::handleIO;net/spy/memcached/MemcachedConnection:::handleReads;net/spy/memcached/protocol/binary/OperationImpl:::readFromBuffer;net/spy/memcached/protocol/binary/OperationImpl:::finishedPayload;net/spy/memcached/protocol/binary/GetOperationImpl:::decodePayload;net/spy/memcached/transcoders/TranscodeService$1:::call;com/XXX::XXX;java/util/zip/Inflater:::inflateBytes;Java_java_util_zip_Inflater_inflateBytes;inflate;__memmove_ssse3_back 1\nperf;__libc_start_main;main;run_builtin;cmd_record 40\nperf;do_lookup_x 27\nsleep;[unknown];memcmp 24\nsleep;__execve;return_from_execve_[k];sys_execve_[k];do_execveat_common.isra.31_[k];search_binary_handler_[k];copy_user_enhanced_fast_string_[k] 1\nsleep;__execve;return_from_execve_[k];sys_execve_[k];do_execveat_common.isra.31_[k];search_binary_handler_[k];load_elf_binary_[k];padzero_[k];clear_user_[k];__clear_user_[k] 2\nsleep;_dl_start_user;_dl_start 9\nsleep;_start 3\nsleep;handle_intel 72\n"
  },
  {
    "path": "test/results/perf-java-faults-01-collapsed-pid.txt",
    "content": "java-?;_int_malloc 2\njava-?;start_thread;_ZL10java_startP6Thread;_ZN10JavaThread3runEv;_ZN10JavaThread17thread_main_innerEv;_ZL12thread_entryP10JavaThreadP6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue6Handle11KlassHandleP6SymbolS5_P6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue11KlassHandleP6SymbolS4_P17JavaCallArgumentsP6Thread;_ZN9JavaCalls11call_helperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread;call_stub;Ljava/lang/Thread:::run;Interpreter;Ljava/util/concurrent/ThreadPoolExecutor$Worker:::run;Ljava/util/concurrent/ThreadPoolExecutor:::runWorker;Lorg/apache/tomcat/util/net/AprEndpoint$SocketProcessor:::run;Lorg/apache/tomcat/util/net/AprEndpoint$SocketProcessor:::doRun;Lorg/apache/coyote/AbstractProtocol$AbstractConnectionHandler:::process;Lorg/apache/coyote/http11/AbstractHttp11Processor:::process;Lorg/apache/catalina/connector/CoyoteAdapter:::service;Lorg/apache/coyote/http11/AbstractHttp11Processor:::action;Lorg/apache/tomcat/jni/Socket:::sendbb 1\njava-?;start_thread;_ZL10java_startP6Thread;_ZN10JavaThread3runEv;_ZN10JavaThread17thread_main_innerEv;_ZL12thread_entryP10JavaThreadP6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue6Handle11KlassHandleP6SymbolS5_P6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue11KlassHandleP6SymbolS4_P17JavaCallArgumentsP6Thread;_ZN9JavaCalls11call_helperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread;call_stub;Lnet/spy/memcached/EVCacheConnection:::run;Lnet/spy/memcached/MemcachedConnection:::handleIO;Lnet/spy/memcached/MemcachedConnection:::handleIO;Lnet/spy/memcached/MemcachedConnection:::handleReads;Lnet/spy/memcached/protocol/binary/OperationImpl:::readFromBuffer;Lnet/spy/memcached/protocol/binary/OperationImpl:::finishedPayload;Lnet/spy/memcached/protocol/binary/GetOperationImpl:::decodePayload;Lnet/spy/memcached/transcoders/TranscodeService$1:::call;Lcom/XXX::XXX;Ljava/util/zip/Inflater:::inflateBytes;Java_java_util_zip_Inflater_inflateBytes;inflate;__memmove_ssse3_back 1\njava-?;start_thread;_ZL10java_startP6Thread;_ZN10JavaThread3runEv;_ZN10JavaThread17thread_main_innerEv;_ZL12thread_entryP10JavaThreadP6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue6Handle11KlassHandleP6SymbolS5_P6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue11KlassHandleP6SymbolS4_P17JavaCallArgumentsP6Thread;_ZN9JavaCalls11call_helperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread;call_stub;Lnet/spy/memcached/EVCacheConnection:::run;Lnet/spy/memcached/MemcachedConnection:::handleIO;Lnet/spy/memcached/MemcachedConnection:::handleIO;Lnet/spy/memcached/MemcachedConnection:::handleReads;Lnet/spy/memcached/protocol/binary/OperationImpl:::readFromBuffer;Lnet/spy/memcached/protocol/binary/OperationImpl:::finishedPayload;Lnet/spy/memcached/protocol/binary/GetOperationImpl:::decodePayload;Lnet/spy/memcached/transcoders/TranscodeService$1:::call;XXX::XXX;Ljava/util/zip/Inflater:::inflateBytes;Java_java_util_zip_Inflater_inflateBytes;inflate;__memmove_ssse3_back 18\nperf-?;__libc_start_main;main;run_builtin;cmd_record 40\nperf-?;do_lookup_x 27\nsleep-?;[unknown];memcmp 24\nsleep-?;__execve;return_from_execve;sys_execve;do_execveat_common.isra.31;search_binary_handler;copy_user_enhanced_fast_string 1\nsleep-?;__execve;return_from_execve;sys_execve;do_execveat_common.isra.31;search_binary_handler;load_elf_binary;padzero;clear_user;__clear_user 2\nsleep-?;_dl_start_user;_dl_start 9\nsleep-?;_start 3\nsleep-?;handle_intel 72\n"
  },
  {
    "path": "test/results/perf-java-faults-01-collapsed-tid.txt",
    "content": "java-?/43869;_int_malloc 2\njava-?/43869;start_thread;_ZL10java_startP6Thread;_ZN10JavaThread3runEv;_ZN10JavaThread17thread_main_innerEv;_ZL12thread_entryP10JavaThreadP6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue6Handle11KlassHandleP6SymbolS5_P6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue11KlassHandleP6SymbolS4_P17JavaCallArgumentsP6Thread;_ZN9JavaCalls11call_helperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread;call_stub;Lnet/spy/memcached/EVCacheConnection:::run;Lnet/spy/memcached/MemcachedConnection:::handleIO;Lnet/spy/memcached/MemcachedConnection:::handleIO;Lnet/spy/memcached/MemcachedConnection:::handleReads;Lnet/spy/memcached/protocol/binary/OperationImpl:::readFromBuffer;Lnet/spy/memcached/protocol/binary/OperationImpl:::finishedPayload;Lnet/spy/memcached/protocol/binary/GetOperationImpl:::decodePayload;Lnet/spy/memcached/transcoders/TranscodeService$1:::call;Lcom/XXX::XXX;Ljava/util/zip/Inflater:::inflateBytes;Java_java_util_zip_Inflater_inflateBytes;inflate;__memmove_ssse3_back 1\njava-?/43869;start_thread;_ZL10java_startP6Thread;_ZN10JavaThread3runEv;_ZN10JavaThread17thread_main_innerEv;_ZL12thread_entryP10JavaThreadP6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue6Handle11KlassHandleP6SymbolS5_P6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue11KlassHandleP6SymbolS4_P17JavaCallArgumentsP6Thread;_ZN9JavaCalls11call_helperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread;call_stub;Lnet/spy/memcached/EVCacheConnection:::run;Lnet/spy/memcached/MemcachedConnection:::handleIO;Lnet/spy/memcached/MemcachedConnection:::handleIO;Lnet/spy/memcached/MemcachedConnection:::handleReads;Lnet/spy/memcached/protocol/binary/OperationImpl:::readFromBuffer;Lnet/spy/memcached/protocol/binary/OperationImpl:::finishedPayload;Lnet/spy/memcached/protocol/binary/GetOperationImpl:::decodePayload;Lnet/spy/memcached/transcoders/TranscodeService$1:::call;XXX::XXX;Ljava/util/zip/Inflater:::inflateBytes;Java_java_util_zip_Inflater_inflateBytes;inflate;__memmove_ssse3_back 18\njava-?/44406;start_thread;_ZL10java_startP6Thread;_ZN10JavaThread3runEv;_ZN10JavaThread17thread_main_innerEv;_ZL12thread_entryP10JavaThreadP6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue6Handle11KlassHandleP6SymbolS5_P6Thread;_ZN9JavaCalls12call_virtualEP9JavaValue11KlassHandleP6SymbolS4_P17JavaCallArgumentsP6Thread;_ZN9JavaCalls11call_helperEP9JavaValueP12methodHandleP17JavaCallArgumentsP6Thread;call_stub;Ljava/lang/Thread:::run;Interpreter;Ljava/util/concurrent/ThreadPoolExecutor$Worker:::run;Ljava/util/concurrent/ThreadPoolExecutor:::runWorker;Lorg/apache/tomcat/util/net/AprEndpoint$SocketProcessor:::run;Lorg/apache/tomcat/util/net/AprEndpoint$SocketProcessor:::doRun;Lorg/apache/coyote/AbstractProtocol$AbstractConnectionHandler:::process;Lorg/apache/coyote/http11/AbstractHttp11Processor:::process;Lorg/apache/catalina/connector/CoyoteAdapter:::service;Lorg/apache/coyote/http11/AbstractHttp11Processor:::action;Lorg/apache/tomcat/jni/Socket:::sendbb 1\nperf-?/47118;__libc_start_main;main;run_builtin;cmd_record 40\nperf-?/47119;do_lookup_x 27\nsleep-?/47119;[unknown];memcmp 24\nsleep-?/47119;__execve;return_from_execve;sys_execve;do_execveat_common.isra.31;search_binary_handler;copy_user_enhanced_fast_string 1\nsleep-?/47119;__execve;return_from_execve;sys_execve;do_execveat_common.isra.31;search_binary_handler;load_elf_binary;padzero;clear_user;__clear_user 2\nsleep-?/47119;_dl_start_user;_dl_start 9\nsleep-?/47119;_start 3\nsleep-?/47119;handle_intel 72\n"
  },
  {
    "path": "test/results/perf-java-stacks-01-collapsed-addrs.txt",
    "content": "ab;[unknown <7f26cab4c0b0>];__write_nocancel;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;inet_sendmsg;call_function_single_interrupt;smp_call_function_single_interrupt;generic_smp_call_function_single_interrupt;remote_function;__perf_event_enable;group_sched_in;x86_pmu_commit_txn;perf_pmu_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr_safe 4\nab;[unknown <7f26cabd51d0>];__write_nocancel;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;local_bh_enable;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_clean_rtx_queue;__kfree_skb 1\nab;[unknown <7f26cabe2590>];__write_nocancel;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb;__kmalloc_reserve.isra.26 1\nab;[unknown <7f26cabf0e30>];__write_nocancel;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;inet_sendmsg;tcp_sendmsg;tcp_send_mss;tcp_current_mss;tcp_v4_md5_lookup 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/buffer/AbstractByteBuf:.writeBytes;sun/nio/ch/SocketChannelImpl:.read 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/buffer/AbstractByteBuf:.writeBytes;sun/nio/ch/SocketChannelImpl:.read;java/lang/Thread:.blockedOn 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/WrapFactory:.wrap;call_function_single_interrupt;smp_call_function_single_interrupt;generic_smp_call_function_single_interrupt;remote_function;__perf_event_enable;group_sched_in;x86_pmu_commit_txn;perf_pmu_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr_safe 4\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call;org/mozilla/javascript/BaseFunction:.construct;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:._c_anonymous_3;org/mozilla/javascript/BaseFunction:.construct;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:._c_anonymous_21;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_31:.call;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.has 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;org/mozilla/javascript/BaseFunction:.construct;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:._c_anonymous_3;org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;org/mozilla/javascript/BaseFunction:.construct;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:._c_anonymous_3;org/mozilla/javascript/ScriptRuntime:.nameOrFunction;org/mozilla/javascript/IdScriptableObject:.get;org/mozilla/javascript/ScriptableObject:.getSlot 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;org/mozilla/javascript/BaseFunction:.construct;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:._c_anonymous_3;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.put;org/mozilla/javascript/ScriptableObject:.getSlot;org/mozilla/javascript/ScriptableObject:.createSlot 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;org/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_4:.call;org/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_4:._c_anonymous_1;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;java/lang/reflect/Method:.invoke 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;org/mozilla/javascript/BaseFunction:.construct;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_3;org/mozilla/javascript/BaseFunction:.construct;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_21;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_49:.call;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_49:.call;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/ScriptableObject:.getSlot 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;org/mozilla/javascript/BaseFunction:.construct;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_3;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.has 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;org/mozilla/javascript/BaseFunction:.construct;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_3;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.put;org/mozilla/javascript/ScriptableObject:.getSlot;org/mozilla/javascript/ScriptableObject:.createSlot 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;org/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_2:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;java/lang/reflect/Method:.invoke;io/netty/handler/codec/http/DefaultHttpHeaders:.add0 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/BaseFunction:.construct;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3;org/mozilla/javascript/BaseFunction:.construct;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_21;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.getParamAndVarCount 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/BaseFunction:.construct;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.has;org/mozilla/javascript/ScriptableObject:.getSlot 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/BaseFunction:.construct;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.<init>;org/mozilla/javascript/NativeFunction:.initScriptFunction;org/mozilla/javascript/TopLevel:.getBuiltinPrototype;call_function_single_interrupt;smp_call_function_single_interrupt;generic_smp_call_function_single_interrupt;remote_function;__perf_event_enable;group_sched_in;x86_pmu_commit_txn;perf_pmu_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr_safe 4\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/BaseFunction:.construct;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.getParamCount 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/BaseFunction:.construct;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_47:.call;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/ScriptableObject:.getSlot 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/handler/codec/http/HttpObjectDecoder:.decode;io/netty/handler/codec/http/HttpMethod:.valueOf 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/handler/codec/http/HttpObjectDecoder:.decode;io/netty/handler/codec/http/HttpObjectDecoder:.findWhitespace 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/DefaultChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/DefaultChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/DefaultChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadHandler:.flush;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.getBytes;sun/nio/ch/SocketChannelImpl:.write;pthread_self 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/DefaultChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/DefaultChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/DefaultChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadHandler:.flush;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.getBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;[libpthread-2.19.so <7f6b42bfc35d>];system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;local_bh_enable;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_data_queue;sock_def_readable;__wake_up_sync_key;__wake_up_common;ep_poll_callback;__wake_up_locked;__wake_up_common;default_wake_function;try_to_wake_up;_raw_spin_unlock_irqrestore 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/DefaultChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/DefaultChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/DefaultChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadHandler:.flush;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.getBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;[libpthread-2.19.so <7f6b42bfc35d>];system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;tcp_v4_send_check;__tcp_v4_send_check 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.select;sun/nio/ch/SelectorImpl:.lockAndDoSelect;sun/nio/ch/EPollSelectorImpl:.doSelect;sun/nio/ch/EPollArrayWrapper:.poll;sun/nio/ch/EPollArrayWrapper:.epollWait;__libc_enable_asynccancel 1\nperf;__libc_start_main;[perf <407a40>];[perf <4081a5>];[perf <415ad5>];__GI___ioctl;system_call_fastpath;sys_ioctl;do_vfs_ioctl;perf_ioctl;perf_event_for_each_child;perf_event_enable;cpu_function_call;smp_call_function_single;remote_function;__perf_event_enable;group_sched_in;x86_pmu_commit_txn;perf_pmu_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr_safe 4\nperf;__libc_start_main;[perf <407a40>];[perf <4081a5>];[perf <415c96>];page_fault 1\nswapper;x86_64_start_kernel;x86_64_start_reservations;start_kernel;rest_init;cpu_startup_entry;rcu_idle_enter 1\n"
  },
  {
    "path": "test/results/perf-java-stacks-01-collapsed-all.txt",
    "content": "ab;[unknown];__write_nocancel;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];inet_sendmsg_[k];call_function_single_interrupt_[k];smp_call_function_single_interrupt_[k];generic_smp_call_function_single_interrupt_[k];remote_function_[k];__perf_event_enable_[k];group_sched_in_[k];x86_pmu_commit_txn_[k];perf_pmu_enable_[k];x86_pmu_enable_[k];intel_pmu_enable_all_[k];native_write_msr_safe_[k] 4\nab;[unknown];__write_nocancel;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];local_bh_enable_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k];__kfree_skb_[k] 1\nab;[unknown];__write_nocancel;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];__kmalloc_reserve.isra.26_[k] 1\nab;[unknown];__write_nocancel;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_send_mss_[k];tcp_current_mss_[k];tcp_v4_md5_lookup_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/buffer/AbstractByteBuf:.writeBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/buffer/AbstractByteBuf:.writeBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];java/lang/Thread:.blockedOn_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/DefaultChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/DefaultChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/DefaultChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadHandler:.flush_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.getBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];pthread_self 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/DefaultChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/DefaultChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/DefaultChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadHandler:.flush_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.getBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];[libpthread-2.19.so];system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];local_bh_enable_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_data_queue_[k];sock_def_readable_[k];__wake_up_sync_key_[k];__wake_up_common_[k];ep_poll_callback_[k];__wake_up_locked_[k];__wake_up_common_[k];default_wake_function_[k];try_to_wake_up_[k];_raw_spin_unlock_irqrestore_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/DefaultChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/DefaultChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/DefaultChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadHandler:.flush_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.getBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];[libpthread-2.19.so];system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];tcp_v4_send_check_[k];__tcp_v4_send_check_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/WrapFactory:.wrap_[j];call_function_single_interrupt_[k];smp_call_function_single_interrupt_[k];generic_smp_call_function_single_interrupt_[k];remote_function_[k];__perf_event_enable_[k];group_sched_in_[k];x86_pmu_commit_txn_[k];perf_pmu_enable_[k];x86_pmu_enable_[k];intel_pmu_enable_all_[k];native_write_msr_safe_[k] 4\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call_[j];org/mozilla/javascript/BaseFunction:.construct_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:._c_anonymous_3_[j];org/mozilla/javascript/BaseFunction:.construct_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:._c_anonymous_21_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_31:.call_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.has_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call_[j];org/mozilla/javascript/BaseFunction:.construct_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:._c_anonymous_3_[j];org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call_[j];org/mozilla/javascript/BaseFunction:.construct_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:._c_anonymous_3_[j];org/mozilla/javascript/ScriptRuntime:.nameOrFunction_[j];org/mozilla/javascript/IdScriptableObject:.get_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call_[j];org/mozilla/javascript/BaseFunction:.construct_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:._c_anonymous_3_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_4:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_4:._c_anonymous_1_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];java/lang/reflect/Method:.invoke_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call_[j];org/mozilla/javascript/BaseFunction:.construct_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_3_[j];org/mozilla/javascript/BaseFunction:.construct_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_21_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_49:.call_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_49:.call_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call_[j];org/mozilla/javascript/BaseFunction:.construct_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_3_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.has_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call_[j];org/mozilla/javascript/BaseFunction:.construct_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_3_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_2:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];java/lang/reflect/Method:.invoke_[j];io/netty/handler/codec/http/DefaultHttpHeaders:.add0_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/BaseFunction:.construct_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3_[j];org/mozilla/javascript/BaseFunction:.construct_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_21_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.getParamAndVarCount_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/BaseFunction:.construct_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.has_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/BaseFunction:.construct_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.<init>_[j];org/mozilla/javascript/NativeFunction:.initScriptFunction_[j];org/mozilla/javascript/TopLevel:.getBuiltinPrototype_[j];call_function_single_interrupt_[k];smp_call_function_single_interrupt_[k];generic_smp_call_function_single_interrupt_[k];remote_function_[k];__perf_event_enable_[k];group_sched_in_[k];x86_pmu_commit_txn_[k];perf_pmu_enable_[k];x86_pmu_enable_[k];intel_pmu_enable_all_[k];native_write_msr_safe_[k] 4\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/BaseFunction:.construct_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.getParamCount_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/BaseFunction:.construct_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_47:.call_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpMethod:.valueOf_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.findWhitespace_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.select_[j];sun/nio/ch/SelectorImpl:.lockAndDoSelect_[j];sun/nio/ch/EPollSelectorImpl:.doSelect_[j];sun/nio/ch/EPollArrayWrapper:.poll_[j];sun/nio/ch/EPollArrayWrapper:.epollWait_[j];__libc_enable_asynccancel 1\nperf;__libc_start_main;[perf];[perf];[perf];__GI___ioctl;system_call_fastpath_[k];sys_ioctl_[k];do_vfs_ioctl_[k];perf_ioctl_[k];perf_event_for_each_child_[k];perf_event_enable_[k];cpu_function_call_[k];smp_call_function_single_[k];remote_function_[k];__perf_event_enable_[k];group_sched_in_[k];x86_pmu_commit_txn_[k];perf_pmu_enable_[k];x86_pmu_enable_[k];intel_pmu_enable_all_[k];native_write_msr_safe_[k] 4\nperf;__libc_start_main;[perf];[perf];[perf];page_fault_[k] 1\nswapper;x86_64_start_kernel_[k];x86_64_start_reservations_[k];start_kernel_[k];rest_init_[k];cpu_startup_entry_[k];rcu_idle_enter_[k] 1\n"
  },
  {
    "path": "test/results/perf-java-stacks-01-collapsed-jit.txt",
    "content": "ab;[unknown];__write_nocancel;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;inet_sendmsg;call_function_single_interrupt;smp_call_function_single_interrupt;generic_smp_call_function_single_interrupt;remote_function;__perf_event_enable;group_sched_in;x86_pmu_commit_txn;perf_pmu_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr_safe 4\nab;[unknown];__write_nocancel;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;local_bh_enable;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_clean_rtx_queue;__kfree_skb 1\nab;[unknown];__write_nocancel;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb;__kmalloc_reserve.isra.26 1\nab;[unknown];__write_nocancel;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;inet_sendmsg;tcp_sendmsg;tcp_send_mss;tcp_current_mss;tcp_v4_md5_lookup 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/buffer/AbstractByteBuf:.writeBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/buffer/AbstractByteBuf:.writeBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];java/lang/Thread:.blockedOn_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/DefaultChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/DefaultChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/DefaultChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadHandler:.flush_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.getBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];pthread_self 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/DefaultChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/DefaultChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/DefaultChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadHandler:.flush_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.getBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];[libpthread-2.19.so];system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;local_bh_enable;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_data_queue;sock_def_readable;__wake_up_sync_key;__wake_up_common;ep_poll_callback;__wake_up_locked;__wake_up_common;default_wake_function;try_to_wake_up;_raw_spin_unlock_irqrestore 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/DefaultChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/DefaultChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/DefaultChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadHandler:.flush_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.getBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];[libpthread-2.19.so];system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;tcp_v4_send_check;__tcp_v4_send_check 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/WrapFactory:.wrap_[j];call_function_single_interrupt;smp_call_function_single_interrupt;generic_smp_call_function_single_interrupt;remote_function;__perf_event_enable;group_sched_in;x86_pmu_commit_txn;perf_pmu_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr_safe 4\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call_[j];org/mozilla/javascript/BaseFunction:.construct_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:._c_anonymous_3_[j];org/mozilla/javascript/BaseFunction:.construct_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:._c_anonymous_21_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_31:.call_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.has_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call_[j];org/mozilla/javascript/BaseFunction:.construct_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:._c_anonymous_3_[j];org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call_[j];org/mozilla/javascript/BaseFunction:.construct_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:._c_anonymous_3_[j];org/mozilla/javascript/ScriptRuntime:.nameOrFunction_[j];org/mozilla/javascript/IdScriptableObject:.get_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call_[j];org/mozilla/javascript/BaseFunction:.construct_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:._c_anonymous_3_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_4:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_4:._c_anonymous_1_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];java/lang/reflect/Method:.invoke_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call_[j];org/mozilla/javascript/BaseFunction:.construct_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_3_[j];org/mozilla/javascript/BaseFunction:.construct_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_21_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_49:.call_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_49:.call_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call_[j];org/mozilla/javascript/BaseFunction:.construct_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_3_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.has_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call_[j];org/mozilla/javascript/BaseFunction:.construct_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_3_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_2:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];java/lang/reflect/Method:.invoke_[j];io/netty/handler/codec/http/DefaultHttpHeaders:.add0_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/BaseFunction:.construct_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3_[j];org/mozilla/javascript/BaseFunction:.construct_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_21_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.getParamAndVarCount_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/BaseFunction:.construct_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.has_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/BaseFunction:.construct_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.<init>_[j];org/mozilla/javascript/NativeFunction:.initScriptFunction_[j];org/mozilla/javascript/TopLevel:.getBuiltinPrototype_[j];call_function_single_interrupt;smp_call_function_single_interrupt;generic_smp_call_function_single_interrupt;remote_function;__perf_event_enable;group_sched_in;x86_pmu_commit_txn;perf_pmu_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr_safe 4\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/BaseFunction:.construct_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.getParamCount_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/vertx/java/core/http/impl/ServerConnection:.handleMessage_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/BaseFunction:.construct_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_47:.call_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpMethod:.valueOf_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.findWhitespace_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.select_[j];sun/nio/ch/SelectorImpl:.lockAndDoSelect_[j];sun/nio/ch/EPollSelectorImpl:.doSelect_[j];sun/nio/ch/EPollArrayWrapper:.poll_[j];sun/nio/ch/EPollArrayWrapper:.epollWait_[j];__libc_enable_asynccancel 1\nperf;__libc_start_main;[perf];[perf];[perf];__GI___ioctl;system_call_fastpath;sys_ioctl;do_vfs_ioctl;perf_ioctl;perf_event_for_each_child;perf_event_enable;cpu_function_call;smp_call_function_single;remote_function;__perf_event_enable;group_sched_in;x86_pmu_commit_txn;perf_pmu_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr_safe 4\nperf;__libc_start_main;[perf];[perf];[perf];page_fault 1\nswapper;x86_64_start_kernel;x86_64_start_reservations;start_kernel;rest_init;cpu_startup_entry;rcu_idle_enter 1\n"
  },
  {
    "path": "test/results/perf-java-stacks-01-collapsed-kernel.txt",
    "content": "ab;[unknown];__write_nocancel;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];inet_sendmsg_[k];call_function_single_interrupt_[k];smp_call_function_single_interrupt_[k];generic_smp_call_function_single_interrupt_[k];remote_function_[k];__perf_event_enable_[k];group_sched_in_[k];x86_pmu_commit_txn_[k];perf_pmu_enable_[k];x86_pmu_enable_[k];intel_pmu_enable_all_[k];native_write_msr_safe_[k] 4\nab;[unknown];__write_nocancel;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];local_bh_enable_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k];__kfree_skb_[k] 1\nab;[unknown];__write_nocancel;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];__kmalloc_reserve.isra.26_[k] 1\nab;[unknown];__write_nocancel;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_send_mss_[k];tcp_current_mss_[k];tcp_v4_md5_lookup_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/buffer/AbstractByteBuf:.writeBytes;sun/nio/ch/SocketChannelImpl:.read 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/buffer/AbstractByteBuf:.writeBytes;sun/nio/ch/SocketChannelImpl:.read;java/lang/Thread:.blockedOn 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/WrapFactory:.wrap;call_function_single_interrupt_[k];smp_call_function_single_interrupt_[k];generic_smp_call_function_single_interrupt_[k];remote_function_[k];__perf_event_enable_[k];group_sched_in_[k];x86_pmu_commit_txn_[k];perf_pmu_enable_[k];x86_pmu_enable_[k];intel_pmu_enable_all_[k];native_write_msr_safe_[k] 4\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call;org/mozilla/javascript/BaseFunction:.construct;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:._c_anonymous_3;org/mozilla/javascript/BaseFunction:.construct;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:._c_anonymous_21;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_31:.call;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.has 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;org/mozilla/javascript/BaseFunction:.construct;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:._c_anonymous_3;org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;org/mozilla/javascript/BaseFunction:.construct;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:._c_anonymous_3;org/mozilla/javascript/ScriptRuntime:.nameOrFunction;org/mozilla/javascript/IdScriptableObject:.get;org/mozilla/javascript/ScriptableObject:.getSlot 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;org/mozilla/javascript/BaseFunction:.construct;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:._c_anonymous_3;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.put;org/mozilla/javascript/ScriptableObject:.getSlot;org/mozilla/javascript/ScriptableObject:.createSlot 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;org/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_4:.call;org/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_4:._c_anonymous_1;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;java/lang/reflect/Method:.invoke 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;org/mozilla/javascript/BaseFunction:.construct;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_3;org/mozilla/javascript/BaseFunction:.construct;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_21;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_49:.call;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_49:.call;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/ScriptableObject:.getSlot 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;org/mozilla/javascript/BaseFunction:.construct;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_3;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.has 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;org/mozilla/javascript/BaseFunction:.construct;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_3;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.put;org/mozilla/javascript/ScriptableObject:.getSlot;org/mozilla/javascript/ScriptableObject:.createSlot 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;org/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_2:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;java/lang/reflect/Method:.invoke;io/netty/handler/codec/http/DefaultHttpHeaders:.add0 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/BaseFunction:.construct;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3;org/mozilla/javascript/BaseFunction:.construct;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_21;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.getParamAndVarCount 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/BaseFunction:.construct;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.has;org/mozilla/javascript/ScriptableObject:.getSlot 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/BaseFunction:.construct;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.<init>;org/mozilla/javascript/NativeFunction:.initScriptFunction;org/mozilla/javascript/TopLevel:.getBuiltinPrototype;call_function_single_interrupt_[k];smp_call_function_single_interrupt_[k];generic_smp_call_function_single_interrupt_[k];remote_function_[k];__perf_event_enable_[k];group_sched_in_[k];x86_pmu_commit_txn_[k];perf_pmu_enable_[k];x86_pmu_enable_[k];intel_pmu_enable_all_[k];native_write_msr_safe_[k] 4\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/BaseFunction:.construct;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.getParamCount 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/vertx/java/core/http/impl/ServerConnection:.handleMessage;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/BaseFunction:.construct;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_47:.call;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/ScriptableObject:.getSlot 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/handler/codec/http/HttpObjectDecoder:.decode;io/netty/handler/codec/http/HttpMethod:.valueOf 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/handler/codec/http/HttpObjectDecoder:.decode;io/netty/handler/codec/http/HttpObjectDecoder:.findWhitespace 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/DefaultChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/DefaultChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/DefaultChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadHandler:.flush;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.getBytes;sun/nio/ch/SocketChannelImpl:.write;pthread_self 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/DefaultChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/DefaultChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/DefaultChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadHandler:.flush;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.getBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;[libpthread-2.19.so];system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];local_bh_enable_[k];do_softirq_[k];do_softirq_own_stack_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];__netif_receive_skb_core_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_data_queue_[k];sock_def_readable_[k];__wake_up_sync_key_[k];__wake_up_common_[k];ep_poll_callback_[k];__wake_up_locked_[k];__wake_up_common_[k];default_wake_function_[k];try_to_wake_up_[k];_raw_spin_unlock_irqrestore_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/DefaultChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/DefaultChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/DefaultChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadHandler:.flush;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.getBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;[libpthread-2.19.so];system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];tcp_v4_send_check_[k];__tcp_v4_send_check_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.select;sun/nio/ch/SelectorImpl:.lockAndDoSelect;sun/nio/ch/EPollSelectorImpl:.doSelect;sun/nio/ch/EPollArrayWrapper:.poll;sun/nio/ch/EPollArrayWrapper:.epollWait;__libc_enable_asynccancel 1\nperf;__libc_start_main;[perf];[perf];[perf];__GI___ioctl;system_call_fastpath_[k];sys_ioctl_[k];do_vfs_ioctl_[k];perf_ioctl_[k];perf_event_for_each_child_[k];perf_event_enable_[k];cpu_function_call_[k];smp_call_function_single_[k];remote_function_[k];__perf_event_enable_[k];group_sched_in_[k];x86_pmu_commit_txn_[k];perf_pmu_enable_[k];x86_pmu_enable_[k];intel_pmu_enable_all_[k];native_write_msr_safe_[k] 4\nperf;__libc_start_main;[perf];[perf];[perf];page_fault_[k] 1\nswapper;x86_64_start_kernel_[k];x86_64_start_reservations_[k];start_kernel_[k];rest_init_[k];cpu_startup_entry_[k];rcu_idle_enter_[k] 1\n"
  },
  {
    "path": "test/results/perf-java-stacks-01-collapsed-pid.txt",
    "content": "ab-?;[unknown];__write_nocancel;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;inet_sendmsg;call_function_single_interrupt;smp_call_function_single_interrupt;generic_smp_call_function_single_interrupt;remote_function;__perf_event_enable;group_sched_in;x86_pmu_commit_txn;perf_pmu_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr_safe 4\nab-?;[unknown];__write_nocancel;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;local_bh_enable;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_clean_rtx_queue;__kfree_skb 1\nab-?;[unknown];__write_nocancel;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb;__kmalloc_reserve.isra.26 1\nab-?;[unknown];__write_nocancel;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;inet_sendmsg;tcp_sendmsg;tcp_send_mss;tcp_current_mss;tcp_v4_md5_lookup 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/buffer/AbstractByteBuf:.writeBytes;Lsun/nio/ch/SocketChannelImpl:.read 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/buffer/AbstractByteBuf:.writeBytes;Lsun/nio/ch/SocketChannelImpl:.read;Ljava/lang/Thread:.blockedOn 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/WrapFactory:.wrap;call_function_single_interrupt;smp_call_function_single_interrupt;generic_smp_call_function_single_interrupt;remote_function;__perf_event_enable;group_sched_in;x86_pmu_commit_txn;perf_pmu_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr_safe 4\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call;Lorg/mozilla/javascript/BaseFunction:.construct;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:._c_anonymous_3;Lorg/mozilla/javascript/BaseFunction:.construct;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:._c_anonymous_21;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_31:.call;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.has 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;Lorg/mozilla/javascript/BaseFunction:.construct;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:._c_anonymous_3;Lorg/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;Lorg/mozilla/javascript/BaseFunction:.construct;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:._c_anonymous_3;Lorg/mozilla/javascript/ScriptRuntime:.nameOrFunction;Lorg/mozilla/javascript/IdScriptableObject:.get;Lorg/mozilla/javascript/ScriptableObject:.getSlot 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;Lorg/mozilla/javascript/BaseFunction:.construct;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:._c_anonymous_3;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.put;Lorg/mozilla/javascript/ScriptableObject:.getSlot;Lorg/mozilla/javascript/ScriptableObject:.createSlot 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_4:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_4:._c_anonymous_1;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Ljava/lang/reflect/Method:.invoke 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;Lorg/mozilla/javascript/BaseFunction:.construct;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_3;Lorg/mozilla/javascript/BaseFunction:.construct;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_21;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_49:.call;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_49:.call;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/ScriptableObject:.getSlot 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;Lorg/mozilla/javascript/BaseFunction:.construct;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_3;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.has 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;Lorg/mozilla/javascript/BaseFunction:.construct;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_3;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.put;Lorg/mozilla/javascript/ScriptableObject:.getSlot;Lorg/mozilla/javascript/ScriptableObject:.createSlot 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_2:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Ljava/lang/reflect/Method:.invoke;Lio/netty/handler/codec/http/DefaultHttpHeaders:.add0 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/BaseFunction:.construct;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3;Lorg/mozilla/javascript/BaseFunction:.construct;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_21;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.getParamAndVarCount 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/BaseFunction:.construct;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.has;Lorg/mozilla/javascript/ScriptableObject:.getSlot 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/BaseFunction:.construct;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.<init>;Lorg/mozilla/javascript/NativeFunction:.initScriptFunction;Lorg/mozilla/javascript/TopLevel:.getBuiltinPrototype;call_function_single_interrupt;smp_call_function_single_interrupt;generic_smp_call_function_single_interrupt;remote_function;__perf_event_enable;group_sched_in;x86_pmu_commit_txn;perf_pmu_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr_safe 4\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/BaseFunction:.construct;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.getParamCount 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/BaseFunction:.construct;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_47:.call;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/ScriptableObject:.getSlot 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/handler/codec/http/HttpObjectDecoder:.decode;Lio/netty/handler/codec/http/HttpMethod:.valueOf 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/handler/codec/http/HttpObjectDecoder:.decode;Lio/netty/handler/codec/http/HttpObjectDecoder:.findWhitespace 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/DefaultChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/DefaultChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/DefaultChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadHandler:.flush;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.getBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;[libpthread-2.19.so];system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;local_bh_enable;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_data_queue;sock_def_readable;__wake_up_sync_key;__wake_up_common;ep_poll_callback;__wake_up_locked;__wake_up_common;default_wake_function;try_to_wake_up;_raw_spin_unlock_irqrestore 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/DefaultChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/DefaultChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/DefaultChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadHandler:.flush;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.getBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;[libpthread-2.19.so];system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;tcp_v4_send_check;__tcp_v4_send_check 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/DefaultChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/DefaultChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/DefaultChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadHandler:.flush;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.getBytes;Lsun/nio/ch/SocketChannelImpl:.write;pthread_self 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.select;Lsun/nio/ch/SelectorImpl:.lockAndDoSelect;Lsun/nio/ch/EPollSelectorImpl:.doSelect;Lsun/nio/ch/EPollArrayWrapper:.poll;Lsun/nio/ch/EPollArrayWrapper:.epollWait;__libc_enable_asynccancel 1\nperf-?;__libc_start_main;[perf];[perf];[perf];__GI___ioctl;system_call_fastpath;sys_ioctl;do_vfs_ioctl;perf_ioctl;perf_event_for_each_child;perf_event_enable;cpu_function_call;smp_call_function_single;remote_function;__perf_event_enable;group_sched_in;x86_pmu_commit_txn;perf_pmu_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr_safe 4\nperf-?;__libc_start_main;[perf];[perf];[perf];page_fault 1\nswapper-?;x86_64_start_kernel;x86_64_start_reservations;start_kernel;rest_init;cpu_startup_entry;rcu_idle_enter 1\n"
  },
  {
    "path": "test/results/perf-java-stacks-01-collapsed-tid.txt",
    "content": "ab-?/23927;[unknown];__write_nocancel;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;inet_sendmsg;call_function_single_interrupt;smp_call_function_single_interrupt;generic_smp_call_function_single_interrupt;remote_function;__perf_event_enable;group_sched_in;x86_pmu_commit_txn;perf_pmu_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr_safe 4\nab-?/23927;[unknown];__write_nocancel;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;local_bh_enable;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_clean_rtx_queue;__kfree_skb 1\nab-?/23927;[unknown];__write_nocancel;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb;__kmalloc_reserve.isra.26 1\nab-?/23927;[unknown];__write_nocancel;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;inet_sendmsg;tcp_sendmsg;tcp_send_mss;tcp_current_mss;tcp_v4_md5_lookup 1\njava-?/23920;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage 1\njava-?/23920;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call;Lorg/mozilla/javascript/BaseFunction:.construct;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:._c_anonymous_3;Lorg/mozilla/javascript/BaseFunction:.construct;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_80:._c_anonymous_21;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_31:.call;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.has 1\njava-?/23921;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/buffer/AbstractByteBuf:.writeBytes;Lsun/nio/ch/SocketChannelImpl:.read 1\njava-?/23921;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/WrapFactory:.wrap;call_function_single_interrupt;smp_call_function_single_interrupt;generic_smp_call_function_single_interrupt;remote_function;__perf_event_enable;group_sched_in;x86_pmu_commit_txn;perf_pmu_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr_safe 4\njava-?/23921;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;Lorg/mozilla/javascript/BaseFunction:.construct;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:._c_anonymous_3;Lorg/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis 1\njava-?/23921;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;Lorg/mozilla/javascript/BaseFunction:.construct;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:._c_anonymous_3;Lorg/mozilla/javascript/ScriptRuntime:.nameOrFunction;Lorg/mozilla/javascript/IdScriptableObject:.get;Lorg/mozilla/javascript/ScriptableObject:.getSlot 1\njava-?/23921;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;Lorg/mozilla/javascript/BaseFunction:.construct;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:._c_anonymous_3;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.put;Lorg/mozilla/javascript/ScriptableObject:.getSlot;Lorg/mozilla/javascript/ScriptableObject:.createSlot 1\njava-?/23921;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_4:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_4:._c_anonymous_1;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_90:.call;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Ljava/lang/reflect/Method:.invoke 1\njava-?/23921;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/handler/codec/http/HttpObjectDecoder:.decode;Lio/netty/handler/codec/http/HttpMethod:.valueOf 1\njava-?/23921;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/DefaultChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/DefaultChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/DefaultChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadHandler:.flush;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.getBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;[libpthread-2.19.so];system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;local_bh_enable;do_softirq;do_softirq_own_stack;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;__netif_receive_skb_core;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_data_queue;sock_def_readable;__wake_up_sync_key;__wake_up_common;ep_poll_callback;__wake_up_locked;__wake_up_common;default_wake_function;try_to_wake_up;_raw_spin_unlock_irqrestore 1\njava-?/23921;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.select;Lsun/nio/ch/SelectorImpl:.lockAndDoSelect;Lsun/nio/ch/EPollSelectorImpl:.doSelect;Lsun/nio/ch/EPollArrayWrapper:.poll;Lsun/nio/ch/EPollArrayWrapper:.epollWait;__libc_enable_asynccancel 1\njava-?/23922;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/buffer/AbstractByteBuf:.writeBytes;Lsun/nio/ch/SocketChannelImpl:.read;Ljava/lang/Thread:.blockedOn 1\njava-?/23922;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead 1\njava-?/23922;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;Lorg/mozilla/javascript/BaseFunction:.construct;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_3;Lorg/mozilla/javascript/BaseFunction:.construct;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_21;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_49:.call;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_49:.call;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/ScriptableObject:.getSlot 1\njava-?/23922;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;Lorg/mozilla/javascript/BaseFunction:.construct;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_3;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.has 1\njava-?/23922;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;Lorg/mozilla/javascript/BaseFunction:.construct;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:._c_anonymous_3;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.put;Lorg/mozilla/javascript/ScriptableObject:.getSlot;Lorg/mozilla/javascript/ScriptableObject:.createSlot 1\njava-?/23922;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_bench_Server_js_js_2:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_91:.call;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Ljava/lang/reflect/Method:.invoke;Lio/netty/handler/codec/http/DefaultHttpHeaders:.add0 1\njava-?/23922;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/DefaultChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/DefaultChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/DefaultChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadHandler:.flush;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.getBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;[libpthread-2.19.so];system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;tcp_v4_send_check;__tcp_v4_send_check 1\njava-?/23923;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call 1\njava-?/23923;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/BaseFunction:.construct;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3;Lorg/mozilla/javascript/BaseFunction:.construct;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_21;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.getParamAndVarCount 1\njava-?/23923;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/BaseFunction:.construct;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.has;Lorg/mozilla/javascript/ScriptableObject:.getSlot 1\njava-?/23923;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/BaseFunction:.construct;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.<init>;Lorg/mozilla/javascript/NativeFunction:.initScriptFunction;Lorg/mozilla/javascript/TopLevel:.getBuiltinPrototype;call_function_single_interrupt;smp_call_function_single_interrupt;generic_smp_call_function_single_interrupt;remote_function;__perf_event_enable;group_sched_in;x86_pmu_commit_txn;perf_pmu_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr_safe 4\njava-?/23923;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/BaseFunction:.construct;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.getParamCount 1\njava-?/23923;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/vertx/java/core/http/impl/ServerConnection:.handleMessage;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/BaseFunction:.construct;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_http_js_93:._c_anonymous_3;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/gen/file__home_bgregg_vert_x_2_1_sys_mods_io_vertx_lang_js_1_1_0_vertx_streams_js_47:.call;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/ScriptableObject:.getSlot 1\njava-?/23923;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/handler/codec/http/HttpObjectDecoder:.decode;Lio/netty/handler/codec/http/HttpObjectDecoder:.findWhitespace 1\njava-?/23923;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/DefaultChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/DefaultChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/DefaultChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/DefaultChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadHandler:.flush;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.getBytes;Lsun/nio/ch/SocketChannelImpl:.write;pthread_self 1\nperf-?/23929;__libc_start_main;[perf];[perf];[perf];__GI___ioctl;system_call_fastpath;sys_ioctl;do_vfs_ioctl;perf_ioctl;perf_event_for_each_child;perf_event_enable;cpu_function_call;smp_call_function_single;remote_function;__perf_event_enable;group_sched_in;x86_pmu_commit_txn;perf_pmu_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr_safe 4\nperf-?/23929;__libc_start_main;[perf];[perf];[perf];page_fault 1\nswapper-?/0;x86_64_start_kernel;x86_64_start_reservations;start_kernel;rest_init;cpu_startup_entry;rcu_idle_enter 1\n"
  },
  {
    "path": "test/results/perf-java-stacks-02-collapsed-addrs.txt",
    "content": "java;start_thread;JavaMain;jni_CallStaticVoidMethod;jni_invoke_static;JavaCalls::call_helper;call_stub;LBusy:::main;java/io/PrintStream:::print;java/io/FileOutputStream:::writeBytes;Java_java_io_FileOutputStream_writeBytes;writeBytes;arrayOopDesc::base;call_function_single_interrupt;smp_call_function_single_interrupt;generic_smp_call_function_single_interrupt;remote_function;__perf_event_enable;group_sched_in;x86_pmu_commit_txn;perf_pmu_enable;x86_pmu_enable;intel_pmu_nhm_enable_all;intel_pmu_enable_all;native_write_msr_safe 2\n"
  },
  {
    "path": "test/results/perf-java-stacks-02-collapsed-all.txt",
    "content": "java;start_thread;JavaMain;jni_CallStaticVoidMethod;jni_invoke_static;JavaCalls::call_helper;call_stub_[j];LBusy:::main_[j];java/io/PrintStream:::print_[j];java/io/FileOutputStream:::writeBytes_[j];Java_java_io_FileOutputStream_writeBytes;writeBytes;arrayOopDesc::base;call_function_single_interrupt_[k];smp_call_function_single_interrupt_[k];generic_smp_call_function_single_interrupt_[k];remote_function_[k];__perf_event_enable_[k];group_sched_in_[k];x86_pmu_commit_txn_[k];perf_pmu_enable_[k];x86_pmu_enable_[k];intel_pmu_nhm_enable_all_[k];intel_pmu_enable_all_[k];native_write_msr_safe_[k] 2\n"
  },
  {
    "path": "test/results/perf-java-stacks-02-collapsed-jit.txt",
    "content": "java;start_thread;JavaMain;jni_CallStaticVoidMethod;jni_invoke_static;JavaCalls::call_helper;call_stub_[j];LBusy:::main_[j];java/io/PrintStream:::print_[j];java/io/FileOutputStream:::writeBytes_[j];Java_java_io_FileOutputStream_writeBytes;writeBytes;arrayOopDesc::base;call_function_single_interrupt;smp_call_function_single_interrupt;generic_smp_call_function_single_interrupt;remote_function;__perf_event_enable;group_sched_in;x86_pmu_commit_txn;perf_pmu_enable;x86_pmu_enable;intel_pmu_nhm_enable_all;intel_pmu_enable_all;native_write_msr_safe 2\n"
  },
  {
    "path": "test/results/perf-java-stacks-02-collapsed-kernel.txt",
    "content": "java;start_thread;JavaMain;jni_CallStaticVoidMethod;jni_invoke_static;JavaCalls::call_helper;call_stub;LBusy:::main;java/io/PrintStream:::print;java/io/FileOutputStream:::writeBytes;Java_java_io_FileOutputStream_writeBytes;writeBytes;arrayOopDesc::base;call_function_single_interrupt_[k];smp_call_function_single_interrupt_[k];generic_smp_call_function_single_interrupt_[k];remote_function_[k];__perf_event_enable_[k];group_sched_in_[k];x86_pmu_commit_txn_[k];perf_pmu_enable_[k];x86_pmu_enable_[k];intel_pmu_nhm_enable_all_[k];intel_pmu_enable_all_[k];native_write_msr_safe_[k] 2\n"
  },
  {
    "path": "test/results/perf-java-stacks-02-collapsed-pid.txt",
    "content": "java-?;start_thread;JavaMain;jni_CallStaticVoidMethod;jni_invoke_static;JavaCalls::call_helper;call_stub;LBusy:::main;Ljava/io/PrintStream:::print;Ljava/io/FileOutputStream:::writeBytes;Java_java_io_FileOutputStream_writeBytes;writeBytes;arrayOopDesc::base;call_function_single_interrupt;smp_call_function_single_interrupt;generic_smp_call_function_single_interrupt;remote_function;__perf_event_enable;group_sched_in;x86_pmu_commit_txn;perf_pmu_enable;x86_pmu_enable;intel_pmu_nhm_enable_all;intel_pmu_enable_all;native_write_msr_safe 2\n"
  },
  {
    "path": "test/results/perf-java-stacks-02-collapsed-tid.txt",
    "content": "java-?/19983;start_thread;JavaMain;jni_CallStaticVoidMethod;jni_invoke_static;JavaCalls::call_helper;call_stub;LBusy:::main;Ljava/io/PrintStream:::print;Ljava/io/FileOutputStream:::writeBytes;Java_java_io_FileOutputStream_writeBytes;writeBytes;arrayOopDesc::base;call_function_single_interrupt;smp_call_function_single_interrupt;generic_smp_call_function_single_interrupt;remote_function;__perf_event_enable;group_sched_in;x86_pmu_commit_txn;perf_pmu_enable;x86_pmu_enable;intel_pmu_nhm_enable_all;intel_pmu_enable_all;native_write_msr_safe 2\n"
  },
  {
    "path": "test/results/perf-js-stacks-01-collapsed-addrs.txt",
    "content": "node-v011;__libc_start_main;node::Start;uv_run;uv__io_poll;uv__async_io;uv__async_event;uv__work_done;node::After;v8::Function::Call;v8::internal::Execution::Call;v8::internal::Invoke;Stub:JSEntryStub;Builtin:A builtin from the snapshot;LazyCompile:_tickDomainCallback node.js:387;LazyCompile:*Async$consumeFunctionBuffer /apps/node/webapp/node_modules/xxxxx/js/main/async.js:39;RegExp:\\bFoo ?Bar 1\nnode-v011;__libc_start_main;node::Start;uv_run;uv__io_poll;uv__async_io;uv__async_event;uv__work_done;node::After;v8::Function::Call;v8::internal::Execution::Call;v8::internal::Invoke;Stub:JSEntryStub;Builtin:A builtin from the snapshot;LazyCompile:_tickDomainCallback node.js:387;LazyCompile:*Async$consumeFunctionBuffer /apps/node/webapp/node_modules/xxxxx/js/main/async.js:39;v8::internal::Execution::Call;LazyCompile:~body_0 evalmachine.<anonymous>:1;RegExp:[&<>\\\\] 1\n"
  },
  {
    "path": "test/results/perf-js-stacks-01-collapsed-all.txt",
    "content": "node-v011;__libc_start_main;node::Start;uv_run;uv__io_poll;uv__async_io;uv__async_event;uv__work_done;node::After;v8::Function::Call;v8::internal::Execution::Call;v8::internal::Invoke;Stub:JSEntryStub_[j];Builtin:A builtin from the snapshot_[j];LazyCompile:_tickDomainCallback node.js:387_[j];LazyCompile:*Async$consumeFunctionBuffer /apps/node/webapp/node_modules/xxxxx/js/main/async.js:39_[j];RegExp:\\bFoo ?Bar_[j] 1\nnode-v011;__libc_start_main;node::Start;uv_run;uv__io_poll;uv__async_io;uv__async_event;uv__work_done;node::After;v8::Function::Call;v8::internal::Execution::Call;v8::internal::Invoke;Stub:JSEntryStub_[j];Builtin:A builtin from the snapshot_[j];LazyCompile:_tickDomainCallback node.js:387_[j];LazyCompile:*Async$consumeFunctionBuffer /apps/node/webapp/node_modules/xxxxx/js/main/async.js:39_[j];v8::internal::Execution::Call;LazyCompile:~body_0 evalmachine.<anonymous>:1_[j];RegExp:[&<>\\\\]_[j] 1\n"
  },
  {
    "path": "test/results/perf-js-stacks-01-collapsed-jit.txt",
    "content": "node-v011;__libc_start_main;node::Start;uv_run;uv__io_poll;uv__async_io;uv__async_event;uv__work_done;node::After;v8::Function::Call;v8::internal::Execution::Call;v8::internal::Invoke;Stub:JSEntryStub_[j];Builtin:A builtin from the snapshot_[j];LazyCompile:_tickDomainCallback node.js:387_[j];LazyCompile:*Async$consumeFunctionBuffer /apps/node/webapp/node_modules/xxxxx/js/main/async.js:39_[j];RegExp:\\bFoo ?Bar_[j] 1\nnode-v011;__libc_start_main;node::Start;uv_run;uv__io_poll;uv__async_io;uv__async_event;uv__work_done;node::After;v8::Function::Call;v8::internal::Execution::Call;v8::internal::Invoke;Stub:JSEntryStub_[j];Builtin:A builtin from the snapshot_[j];LazyCompile:_tickDomainCallback node.js:387_[j];LazyCompile:*Async$consumeFunctionBuffer /apps/node/webapp/node_modules/xxxxx/js/main/async.js:39_[j];v8::internal::Execution::Call;LazyCompile:~body_0 evalmachine.<anonymous>:1_[j];RegExp:[&<>\\\\]_[j] 1\n"
  },
  {
    "path": "test/results/perf-js-stacks-01-collapsed-kernel.txt",
    "content": "node-v011;__libc_start_main;node::Start;uv_run;uv__io_poll;uv__async_io;uv__async_event;uv__work_done;node::After;v8::Function::Call;v8::internal::Execution::Call;v8::internal::Invoke;Stub:JSEntryStub;Builtin:A builtin from the snapshot;LazyCompile:_tickDomainCallback node.js:387;LazyCompile:*Async$consumeFunctionBuffer /apps/node/webapp/node_modules/xxxxx/js/main/async.js:39;RegExp:\\bFoo ?Bar 1\nnode-v011;__libc_start_main;node::Start;uv_run;uv__io_poll;uv__async_io;uv__async_event;uv__work_done;node::After;v8::Function::Call;v8::internal::Execution::Call;v8::internal::Invoke;Stub:JSEntryStub;Builtin:A builtin from the snapshot;LazyCompile:_tickDomainCallback node.js:387;LazyCompile:*Async$consumeFunctionBuffer /apps/node/webapp/node_modules/xxxxx/js/main/async.js:39;v8::internal::Execution::Call;LazyCompile:~body_0 evalmachine.<anonymous>:1;RegExp:[&<>\\\\] 1\n"
  },
  {
    "path": "test/results/perf-js-stacks-01-collapsed-pid.txt",
    "content": "node-v011-?;__libc_start_main;node::Start;uv_run;uv__io_poll;uv__async_io;uv__async_event;uv__work_done;node::After;v8::Function::Call;v8::internal::Execution::Call;v8::internal::Invoke;Stub:JSEntryStub;Builtin:A builtin from the snapshot;LazyCompile:_tickDomainCallback node.js:387;LazyCompile:*Async$consumeFunctionBuffer /apps/node/webapp/node_modules/xxxxx/js/main/async.js:39;RegExp:\\bFoo ?Bar 1\nnode-v011-?;__libc_start_main;node::Start;uv_run;uv__io_poll;uv__async_io;uv__async_event;uv__work_done;node::After;v8::Function::Call;v8::internal::Execution::Call;v8::internal::Invoke;Stub:JSEntryStub;Builtin:A builtin from the snapshot;LazyCompile:_tickDomainCallback node.js:387;LazyCompile:*Async$consumeFunctionBuffer /apps/node/webapp/node_modules/xxxxx/js/main/async.js:39;v8::internal::Execution::Call;LazyCompile:~body_0 evalmachine.<anonymous>:1;RegExp:[&<>\\\\] 1\n"
  },
  {
    "path": "test/results/perf-js-stacks-01-collapsed-tid.txt",
    "content": "node-v011-?/31912;__libc_start_main;node::Start;uv_run;uv__io_poll;uv__async_io;uv__async_event;uv__work_done;node::After;v8::Function::Call;v8::internal::Execution::Call;v8::internal::Invoke;Stub:JSEntryStub;Builtin:A builtin from the snapshot;LazyCompile:_tickDomainCallback node.js:387;LazyCompile:*Async$consumeFunctionBuffer /apps/node/webapp/node_modules/xxxxx/js/main/async.js:39;RegExp:\\bFoo ?Bar 1\nnode-v011-?/31912;__libc_start_main;node::Start;uv_run;uv__io_poll;uv__async_io;uv__async_event;uv__work_done;node::After;v8::Function::Call;v8::internal::Execution::Call;v8::internal::Invoke;Stub:JSEntryStub;Builtin:A builtin from the snapshot;LazyCompile:_tickDomainCallback node.js:387;LazyCompile:*Async$consumeFunctionBuffer /apps/node/webapp/node_modules/xxxxx/js/main/async.js:39;v8::internal::Execution::Call;LazyCompile:~body_0 evalmachine.<anonymous>:1;RegExp:[&<>\\\\] 1\n"
  },
  {
    "path": "test/results/perf-mirageos-stacks-01-collapsed-addrs.txt",
    "content": "mir-console;[unknown <6eaf28>];camlLwt__bind_1394 2\nmir-console;[unknown <6eaf28>];camlLwt__return_1285 1\nmir-console;[unknown <7f57a7549e40>];camlLwt__repr_rec_1132 1\nmir-console;[unknown <7f57a760d920>];camlLwt__repr_rec_1132 1\nmir-console;[unknown <7fff978f8dd0>];caml_start_program;caml_program;camlMain__entry;camlUnikernel____pa_lwt_loop_1382;camlLwt__bind_1394 2\nmir-console;camlLwt__bind_1394 2\nmir-console;camlMain__fun_1418;camlLwt__return_1285 2\nmir-console;camlMain__fun_1418;camlUnikernel____pa_lwt_loop_1382 1\nmir-console;camlUnikernel__fun_1396 1\nswapper;cpu_bringup_and_idle;cpu_startup_entry;arch_cpu_idle;default_idle;xen_hypercall_sched_op 39\n"
  },
  {
    "path": "test/results/perf-mirageos-stacks-01-collapsed-all.txt",
    "content": "mir-console;[unknown];camlLwt__bind_1394 2\nmir-console;[unknown];camlLwt__repr_rec_1132 2\nmir-console;[unknown];camlLwt__return_1285 1\nmir-console;[unknown];caml_start_program;caml_program;camlMain__entry;camlUnikernel____pa_lwt_loop_1382;camlLwt__bind_1394 2\nmir-console;camlLwt__bind_1394 2\nmir-console;camlMain__fun_1418;camlLwt__return_1285 2\nmir-console;camlMain__fun_1418;camlUnikernel____pa_lwt_loop_1382 1\nmir-console;camlUnikernel__fun_1396 1\nswapper;cpu_bringup_and_idle_[k];cpu_startup_entry_[k];arch_cpu_idle_[k];default_idle_[k];xen_hypercall_sched_op_[k] 39\n"
  },
  {
    "path": "test/results/perf-mirageos-stacks-01-collapsed-jit.txt",
    "content": "mir-console;[unknown];camlLwt__bind_1394 2\nmir-console;[unknown];camlLwt__repr_rec_1132 2\nmir-console;[unknown];camlLwt__return_1285 1\nmir-console;[unknown];caml_start_program;caml_program;camlMain__entry;camlUnikernel____pa_lwt_loop_1382;camlLwt__bind_1394 2\nmir-console;camlLwt__bind_1394 2\nmir-console;camlMain__fun_1418;camlLwt__return_1285 2\nmir-console;camlMain__fun_1418;camlUnikernel____pa_lwt_loop_1382 1\nmir-console;camlUnikernel__fun_1396 1\nswapper;cpu_bringup_and_idle;cpu_startup_entry;arch_cpu_idle;default_idle;xen_hypercall_sched_op 39\n"
  },
  {
    "path": "test/results/perf-mirageos-stacks-01-collapsed-kernel.txt",
    "content": "mir-console;[unknown];camlLwt__bind_1394 2\nmir-console;[unknown];camlLwt__repr_rec_1132 2\nmir-console;[unknown];camlLwt__return_1285 1\nmir-console;[unknown];caml_start_program;caml_program;camlMain__entry;camlUnikernel____pa_lwt_loop_1382;camlLwt__bind_1394 2\nmir-console;camlLwt__bind_1394 2\nmir-console;camlMain__fun_1418;camlLwt__return_1285 2\nmir-console;camlMain__fun_1418;camlUnikernel____pa_lwt_loop_1382 1\nmir-console;camlUnikernel__fun_1396 1\nswapper;cpu_bringup_and_idle_[k];cpu_startup_entry_[k];arch_cpu_idle_[k];default_idle_[k];xen_hypercall_sched_op_[k] 39\n"
  },
  {
    "path": "test/results/perf-mirageos-stacks-01-collapsed-pid.txt",
    "content": "mir-console-?;[unknown];camlLwt__bind_1394 2\nmir-console-?;[unknown];camlLwt__repr_rec_1132 2\nmir-console-?;[unknown];camlLwt__return_1285 1\nmir-console-?;[unknown];caml_start_program;caml_program;camlMain__entry;camlUnikernel____pa_lwt_loop_1382;camlLwt__bind_1394 2\nmir-console-?;camlLwt__bind_1394 2\nmir-console-?;camlMain__fun_1418;camlLwt__return_1285 2\nmir-console-?;camlMain__fun_1418;camlUnikernel____pa_lwt_loop_1382 1\nmir-console-?;camlUnikernel__fun_1396 1\nswapper-?;cpu_bringup_and_idle;cpu_startup_entry;arch_cpu_idle;default_idle;xen_hypercall_sched_op 39\n"
  },
  {
    "path": "test/results/perf-mirageos-stacks-01-collapsed-tid.txt",
    "content": "mir-console-?/23166;[unknown];camlLwt__bind_1394 2\nmir-console-?/23166;[unknown];camlLwt__repr_rec_1132 2\nmir-console-?/23166;[unknown];camlLwt__return_1285 1\nmir-console-?/23166;[unknown];caml_start_program;caml_program;camlMain__entry;camlUnikernel____pa_lwt_loop_1382;camlLwt__bind_1394 2\nmir-console-?/23166;camlLwt__bind_1394 2\nmir-console-?/23166;camlMain__fun_1418;camlLwt__return_1285 2\nmir-console-?/23166;camlMain__fun_1418;camlUnikernel____pa_lwt_loop_1382 1\nmir-console-?/23166;camlUnikernel__fun_1396 1\nswapper-?/0;cpu_bringup_and_idle;cpu_startup_entry;arch_cpu_idle;default_idle;xen_hypercall_sched_op 39\n"
  },
  {
    "path": "test/results/perf-numa-stacks-01-collapsed-addrs.txt",
    "content": "java;[perf-10939.map <7f08b5331209>];OptoRuntime::multianewarray2_C;ObjArrayKlass::multi_allocate;TypeArrayKlass::multi_allocate;TypeArrayKlass::allocate_common;page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;cpumask_next_and;find_next_bit 1\njava;[perf-10939.map <7f08b5331209>];OptoRuntime::multianewarray2_C;ObjArrayKlass::multi_allocate;TypeArrayKlass::multi_allocate;TypeArrayKlass::allocate_common;page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 5\njava;[perf-10939.map <7f08b578411f>];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 7\njava;[perf-10939.map <7f08b578412c>];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 3\njava;[perf-10939.map <7f08b5784130>];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 4\njava;[perf-10939.map <7f08b57842cb>] 1\njava;[perf-10939.map <7f08b578432f>] 1\njava;[perf-10939.map <7f08b5784377>];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 2\njava;[perf-10939.map <7f08b578437b>];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 2\njava;[perf-10939.map <7f08b5784383>] 1\njava;[perf-10939.map <7f08b57ae255>];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;_raw_spin_unlock_irqrestore 1\njava;[perf-10939.map <7f08b57ae255>];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;notify_remote_via_irq 1\njava;[perf-10939.map <7f08b57ae255>];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;notify_remote_via_irq;evtchn_from_irq;irq_get_irq_data;irq_to_desc;radix_tree_lookup_element 1\njava;[perf-10939.map <7f08b57ae255>];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 5\njava;[perf-10939.map <7f08b57ae3b4>] 1\njava;[perf-10939.map <7f08b57b5a5c>];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many 1\njava;[perf-10939.map <7f08b57feb3e>] 3\njava;[perf-10939.map <7f08b57feb4b>] 1\njava;[perf-10939.map <7f08b57feb5b>] 1\njava;[perf-10939.map <7f08b57feb68>] 1\njava;[perf-10939.map <7f08b57feb75>] 3\njava;[perf-10939.map <7f08b57feb8f>] 2\njava;[perf-10939.map <7f08b57feb9c>] 1\njava;[perf-10939.map <7f08b581723e>] 2\njava;[perf-10939.map <7f08b5817256>] 4\njava;[perf-10939.map <7f08b5817290>] 1\njava;[unknown <7ecef8f2f480>];[perf-10939.map <7f08b5783b58>];page_fault;do_page_fault;__do_page_fault 1\njava;[unknown <7ecef8f2f480>];[perf-10939.map <7f08b5783b58>];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 7\njava;[unknown <7ecef8f2f480>];[perf-10939.map <7f08b5783bfc>] 1\njava;[unknown <7ecef8f2f480>];[perf-10939.map <7f08b5783bfc>];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 1\njava;[unknown <7f08c880b5c8>];[perf-10939.map <7f08b56bffa1>];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 10\njava;[unknown <7f08c88c60a8>];[perf-10939.map <7f08b579f7e7>];[perf-10939.map <7f08b50523b6>];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 1\njava;[unknown <7f08c88c60a8>];[perf-10939.map <7f08b579f7e7>];[perf-10939.map <7f08b50523c2>];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 2\njava;[unknown <7f08c88c60a8>];[perf-10939.map <7f08b579f7e7>];[perf-10939.map <7f08b50523ce>] 1\njava;[unknown <7f08c88c60a8>];[perf-10939.map <7f08b579f7e7>];[perf-10939.map <7f08b50523ce>];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 4\njava;[unknown <7f08c88c60a8>];[perf-10939.map <7f08b579f7e7>];[perf-10939.map <7f08b50523da>];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 2\njava;[unknown <7f08c88c60a8>];[perf-10939.map <7f08b579f8a4>];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 12\njava;[unknown <7f08c8a52338>];[perf-10939.map <7f08b5783e3d>];page_fault;do_page_fault;__do_page_fault 1\njava;[unknown <7f08c8a52338>];[perf-10939.map <7f08b5783e3d>];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 7\njava;[unknown <7f08c8a52338>];[perf-10939.map <7f08b5783e40>] 1\njava;[unknown <7f08c8a52338>];[perf-10939.map <7f08b5783e4a>];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 8\njava;[unknown <7f08c8a52338>];[perf-10939.map <7f08b5783e4e>];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 8\njava;[unknown <7f08c8a52338>];[perf-10939.map <7f08b5783e4e>];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;find_next_bit 1\njava;[unknown <7f08c8a52338>];[perf-10939.map <7f08b5784261>];retint_signal;do_notify_resume;task_work_run;task_numa_work;change_prot_numa;change_protection;change_protection_range 1\nswapper;start_secondary;cpu_startup_entry;arch_cpu_idle;default_idle;native_safe_halt 72\nswapper;x86_64_start_kernel;x86_64_start_reservations;start_kernel;rest_init;cpu_startup_entry;arch_cpu_idle;default_idle;native_safe_halt 2\n"
  },
  {
    "path": "test/results/perf-numa-stacks-01-collapsed-all.txt",
    "content": "java;[perf-10939.map]_[j] 23\njava;[perf-10939.map]_[j];OptoRuntime::multianewarray2_C;ObjArrayKlass::multi_allocate;TypeArrayKlass::multi_allocate;TypeArrayKlass::allocate_common;page_fault_[k];do_page_fault_[k];__do_page_fault_[k];handle_mm_fault_[k];do_numa_page_[k];migrate_misplaced_page_[k];migrate_pages_[k];try_to_unmap_[k];try_to_unmap_anon_[k];try_to_unmap_one_[k];ptep_clear_flush_[k];flush_tlb_page_[k];native_flush_tlb_others_[k];smp_call_function_many_[k];xen_smp_send_call_function_ipi_[k];__xen_send_IPI_mask_[k];cpumask_next_and_[k];find_next_bit_[k] 1\njava;[perf-10939.map]_[j];OptoRuntime::multianewarray2_C;ObjArrayKlass::multi_allocate;TypeArrayKlass::multi_allocate;TypeArrayKlass::allocate_common;page_fault_[k];do_page_fault_[k];__do_page_fault_[k];handle_mm_fault_[k];do_numa_page_[k];migrate_misplaced_page_[k];migrate_pages_[k];try_to_unmap_[k];try_to_unmap_anon_[k];try_to_unmap_one_[k];ptep_clear_flush_[k];flush_tlb_page_[k];native_flush_tlb_others_[k];smp_call_function_many_[k];xen_smp_send_call_function_ipi_[k];__xen_send_IPI_mask_[k];xen_send_IPI_one_[k];xen_hypercall_event_channel_op_[k] 5\njava;[perf-10939.map]_[j];page_fault_[k];do_page_fault_[k];__do_page_fault_[k];handle_mm_fault_[k];do_numa_page_[k];migrate_misplaced_page_[k];migrate_pages_[k];try_to_unmap_[k];try_to_unmap_anon_[k];try_to_unmap_one_[k];ptep_clear_flush_[k];flush_tlb_page_[k];native_flush_tlb_others_[k];smp_call_function_many_[k] 1\njava;[perf-10939.map]_[j];page_fault_[k];do_page_fault_[k];__do_page_fault_[k];handle_mm_fault_[k];do_numa_page_[k];migrate_misplaced_page_[k];migrate_pages_[k];try_to_unmap_[k];try_to_unmap_anon_[k];try_to_unmap_one_[k];ptep_clear_flush_[k];flush_tlb_page_[k];native_flush_tlb_others_[k];smp_call_function_many_[k];_raw_spin_unlock_irqrestore_[k] 1\njava;[perf-10939.map]_[j];page_fault_[k];do_page_fault_[k];__do_page_fault_[k];handle_mm_fault_[k];do_numa_page_[k];migrate_misplaced_page_[k];migrate_pages_[k];try_to_unmap_[k];try_to_unmap_anon_[k];try_to_unmap_one_[k];ptep_clear_flush_[k];flush_tlb_page_[k];native_flush_tlb_others_[k];smp_call_function_many_[k];xen_smp_send_call_function_ipi_[k];__xen_send_IPI_mask_[k];xen_send_IPI_one_[k];notify_remote_via_irq_[k] 1\njava;[perf-10939.map]_[j];page_fault_[k];do_page_fault_[k];__do_page_fault_[k];handle_mm_fault_[k];do_numa_page_[k];migrate_misplaced_page_[k];migrate_pages_[k];try_to_unmap_[k];try_to_unmap_anon_[k];try_to_unmap_one_[k];ptep_clear_flush_[k];flush_tlb_page_[k];native_flush_tlb_others_[k];smp_call_function_many_[k];xen_smp_send_call_function_ipi_[k];__xen_send_IPI_mask_[k];xen_send_IPI_one_[k];notify_remote_via_irq_[k];evtchn_from_irq_[k];irq_get_irq_data_[k];irq_to_desc_[k];radix_tree_lookup_element_[k] 1\njava;[perf-10939.map]_[j];page_fault_[k];do_page_fault_[k];__do_page_fault_[k];handle_mm_fault_[k];do_numa_page_[k];migrate_misplaced_page_[k];migrate_pages_[k];try_to_unmap_[k];try_to_unmap_anon_[k];try_to_unmap_one_[k];ptep_clear_flush_[k];flush_tlb_page_[k];native_flush_tlb_others_[k];smp_call_function_many_[k];xen_smp_send_call_function_ipi_[k];__xen_send_IPI_mask_[k];xen_send_IPI_one_[k];xen_hypercall_event_channel_op_[k] 23\njava;[unknown];[perf-10939.map]_[j] 2\njava;[unknown];[perf-10939.map]_[j];[perf-10939.map]_[j] 1\njava;[unknown];[perf-10939.map]_[j];[perf-10939.map]_[j];page_fault_[k];do_page_fault_[k];__do_page_fault_[k];handle_mm_fault_[k];do_numa_page_[k];migrate_misplaced_page_[k];migrate_pages_[k];try_to_unmap_[k];try_to_unmap_anon_[k];try_to_unmap_one_[k];ptep_clear_flush_[k];flush_tlb_page_[k];native_flush_tlb_others_[k];smp_call_function_many_[k];xen_smp_send_call_function_ipi_[k];__xen_send_IPI_mask_[k];xen_send_IPI_one_[k];xen_hypercall_event_channel_op_[k] 9\njava;[unknown];[perf-10939.map]_[j];page_fault_[k];do_page_fault_[k];__do_page_fault_[k] 2\njava;[unknown];[perf-10939.map]_[j];page_fault_[k];do_page_fault_[k];__do_page_fault_[k];handle_mm_fault_[k];do_numa_page_[k];migrate_misplaced_page_[k];migrate_pages_[k];try_to_unmap_[k];try_to_unmap_anon_[k];try_to_unmap_one_[k];ptep_clear_flush_[k];flush_tlb_page_[k];native_flush_tlb_others_[k];smp_call_function_many_[k];xen_smp_send_call_function_ipi_[k];__xen_send_IPI_mask_[k];xen_send_IPI_one_[k];xen_hypercall_event_channel_op_[k] 53\njava;[unknown];[perf-10939.map]_[j];page_fault_[k];do_page_fault_[k];__do_page_fault_[k];handle_mm_fault_[k];do_numa_page_[k];migrate_misplaced_page_[k];migrate_pages_[k];try_to_unmap_[k];try_to_unmap_anon_[k];try_to_unmap_one_[k];ptep_clear_flush_[k];flush_tlb_page_[k];native_flush_tlb_others_[k];smp_call_function_many_[k];xen_smp_send_call_function_ipi_[k];find_next_bit_[k] 1\njava;[unknown];[perf-10939.map]_[j];retint_signal_[k];do_notify_resume_[k];task_work_run_[k];task_numa_work_[k];change_prot_numa_[k];change_protection_[k];change_protection_range_[k] 1\nswapper;start_secondary_[k];cpu_startup_entry_[k];arch_cpu_idle_[k];default_idle_[k];native_safe_halt_[k] 72\nswapper;x86_64_start_kernel_[k];x86_64_start_reservations_[k];start_kernel_[k];rest_init_[k];cpu_startup_entry_[k];arch_cpu_idle_[k];default_idle_[k];native_safe_halt_[k] 2\n"
  },
  {
    "path": "test/results/perf-numa-stacks-01-collapsed-jit.txt",
    "content": "java;[perf-10939.map]_[j] 23\njava;[perf-10939.map]_[j];OptoRuntime::multianewarray2_C;ObjArrayKlass::multi_allocate;TypeArrayKlass::multi_allocate;TypeArrayKlass::allocate_common;page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;cpumask_next_and;find_next_bit 1\njava;[perf-10939.map]_[j];OptoRuntime::multianewarray2_C;ObjArrayKlass::multi_allocate;TypeArrayKlass::multi_allocate;TypeArrayKlass::allocate_common;page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 5\njava;[perf-10939.map]_[j];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many 1\njava;[perf-10939.map]_[j];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;_raw_spin_unlock_irqrestore 1\njava;[perf-10939.map]_[j];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;notify_remote_via_irq 1\njava;[perf-10939.map]_[j];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;notify_remote_via_irq;evtchn_from_irq;irq_get_irq_data;irq_to_desc;radix_tree_lookup_element 1\njava;[perf-10939.map]_[j];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 23\njava;[unknown];[perf-10939.map]_[j] 2\njava;[unknown];[perf-10939.map]_[j];[perf-10939.map]_[j] 1\njava;[unknown];[perf-10939.map]_[j];[perf-10939.map]_[j];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 9\njava;[unknown];[perf-10939.map]_[j];page_fault;do_page_fault;__do_page_fault 2\njava;[unknown];[perf-10939.map]_[j];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 53\njava;[unknown];[perf-10939.map]_[j];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;find_next_bit 1\njava;[unknown];[perf-10939.map]_[j];retint_signal;do_notify_resume;task_work_run;task_numa_work;change_prot_numa;change_protection;change_protection_range 1\nswapper;start_secondary;cpu_startup_entry;arch_cpu_idle;default_idle;native_safe_halt 72\nswapper;x86_64_start_kernel;x86_64_start_reservations;start_kernel;rest_init;cpu_startup_entry;arch_cpu_idle;default_idle;native_safe_halt 2\n"
  },
  {
    "path": "test/results/perf-numa-stacks-01-collapsed-kernel.txt",
    "content": "java;[perf-10939.map] 23\njava;[perf-10939.map];OptoRuntime::multianewarray2_C;ObjArrayKlass::multi_allocate;TypeArrayKlass::multi_allocate;TypeArrayKlass::allocate_common;page_fault_[k];do_page_fault_[k];__do_page_fault_[k];handle_mm_fault_[k];do_numa_page_[k];migrate_misplaced_page_[k];migrate_pages_[k];try_to_unmap_[k];try_to_unmap_anon_[k];try_to_unmap_one_[k];ptep_clear_flush_[k];flush_tlb_page_[k];native_flush_tlb_others_[k];smp_call_function_many_[k];xen_smp_send_call_function_ipi_[k];__xen_send_IPI_mask_[k];cpumask_next_and_[k];find_next_bit_[k] 1\njava;[perf-10939.map];OptoRuntime::multianewarray2_C;ObjArrayKlass::multi_allocate;TypeArrayKlass::multi_allocate;TypeArrayKlass::allocate_common;page_fault_[k];do_page_fault_[k];__do_page_fault_[k];handle_mm_fault_[k];do_numa_page_[k];migrate_misplaced_page_[k];migrate_pages_[k];try_to_unmap_[k];try_to_unmap_anon_[k];try_to_unmap_one_[k];ptep_clear_flush_[k];flush_tlb_page_[k];native_flush_tlb_others_[k];smp_call_function_many_[k];xen_smp_send_call_function_ipi_[k];__xen_send_IPI_mask_[k];xen_send_IPI_one_[k];xen_hypercall_event_channel_op_[k] 5\njava;[perf-10939.map];page_fault_[k];do_page_fault_[k];__do_page_fault_[k];handle_mm_fault_[k];do_numa_page_[k];migrate_misplaced_page_[k];migrate_pages_[k];try_to_unmap_[k];try_to_unmap_anon_[k];try_to_unmap_one_[k];ptep_clear_flush_[k];flush_tlb_page_[k];native_flush_tlb_others_[k];smp_call_function_many_[k] 1\njava;[perf-10939.map];page_fault_[k];do_page_fault_[k];__do_page_fault_[k];handle_mm_fault_[k];do_numa_page_[k];migrate_misplaced_page_[k];migrate_pages_[k];try_to_unmap_[k];try_to_unmap_anon_[k];try_to_unmap_one_[k];ptep_clear_flush_[k];flush_tlb_page_[k];native_flush_tlb_others_[k];smp_call_function_many_[k];_raw_spin_unlock_irqrestore_[k] 1\njava;[perf-10939.map];page_fault_[k];do_page_fault_[k];__do_page_fault_[k];handle_mm_fault_[k];do_numa_page_[k];migrate_misplaced_page_[k];migrate_pages_[k];try_to_unmap_[k];try_to_unmap_anon_[k];try_to_unmap_one_[k];ptep_clear_flush_[k];flush_tlb_page_[k];native_flush_tlb_others_[k];smp_call_function_many_[k];xen_smp_send_call_function_ipi_[k];__xen_send_IPI_mask_[k];xen_send_IPI_one_[k];notify_remote_via_irq_[k] 1\njava;[perf-10939.map];page_fault_[k];do_page_fault_[k];__do_page_fault_[k];handle_mm_fault_[k];do_numa_page_[k];migrate_misplaced_page_[k];migrate_pages_[k];try_to_unmap_[k];try_to_unmap_anon_[k];try_to_unmap_one_[k];ptep_clear_flush_[k];flush_tlb_page_[k];native_flush_tlb_others_[k];smp_call_function_many_[k];xen_smp_send_call_function_ipi_[k];__xen_send_IPI_mask_[k];xen_send_IPI_one_[k];notify_remote_via_irq_[k];evtchn_from_irq_[k];irq_get_irq_data_[k];irq_to_desc_[k];radix_tree_lookup_element_[k] 1\njava;[perf-10939.map];page_fault_[k];do_page_fault_[k];__do_page_fault_[k];handle_mm_fault_[k];do_numa_page_[k];migrate_misplaced_page_[k];migrate_pages_[k];try_to_unmap_[k];try_to_unmap_anon_[k];try_to_unmap_one_[k];ptep_clear_flush_[k];flush_tlb_page_[k];native_flush_tlb_others_[k];smp_call_function_many_[k];xen_smp_send_call_function_ipi_[k];__xen_send_IPI_mask_[k];xen_send_IPI_one_[k];xen_hypercall_event_channel_op_[k] 23\njava;[unknown];[perf-10939.map] 2\njava;[unknown];[perf-10939.map];[perf-10939.map] 1\njava;[unknown];[perf-10939.map];[perf-10939.map];page_fault_[k];do_page_fault_[k];__do_page_fault_[k];handle_mm_fault_[k];do_numa_page_[k];migrate_misplaced_page_[k];migrate_pages_[k];try_to_unmap_[k];try_to_unmap_anon_[k];try_to_unmap_one_[k];ptep_clear_flush_[k];flush_tlb_page_[k];native_flush_tlb_others_[k];smp_call_function_many_[k];xen_smp_send_call_function_ipi_[k];__xen_send_IPI_mask_[k];xen_send_IPI_one_[k];xen_hypercall_event_channel_op_[k] 9\njava;[unknown];[perf-10939.map];page_fault_[k];do_page_fault_[k];__do_page_fault_[k] 2\njava;[unknown];[perf-10939.map];page_fault_[k];do_page_fault_[k];__do_page_fault_[k];handle_mm_fault_[k];do_numa_page_[k];migrate_misplaced_page_[k];migrate_pages_[k];try_to_unmap_[k];try_to_unmap_anon_[k];try_to_unmap_one_[k];ptep_clear_flush_[k];flush_tlb_page_[k];native_flush_tlb_others_[k];smp_call_function_many_[k];xen_smp_send_call_function_ipi_[k];__xen_send_IPI_mask_[k];xen_send_IPI_one_[k];xen_hypercall_event_channel_op_[k] 53\njava;[unknown];[perf-10939.map];page_fault_[k];do_page_fault_[k];__do_page_fault_[k];handle_mm_fault_[k];do_numa_page_[k];migrate_misplaced_page_[k];migrate_pages_[k];try_to_unmap_[k];try_to_unmap_anon_[k];try_to_unmap_one_[k];ptep_clear_flush_[k];flush_tlb_page_[k];native_flush_tlb_others_[k];smp_call_function_many_[k];xen_smp_send_call_function_ipi_[k];find_next_bit_[k] 1\njava;[unknown];[perf-10939.map];retint_signal_[k];do_notify_resume_[k];task_work_run_[k];task_numa_work_[k];change_prot_numa_[k];change_protection_[k];change_protection_range_[k] 1\nswapper;start_secondary_[k];cpu_startup_entry_[k];arch_cpu_idle_[k];default_idle_[k];native_safe_halt_[k] 72\nswapper;x86_64_start_kernel_[k];x86_64_start_reservations_[k];start_kernel_[k];rest_init_[k];cpu_startup_entry_[k];arch_cpu_idle_[k];default_idle_[k];native_safe_halt_[k] 2\n"
  },
  {
    "path": "test/results/perf-numa-stacks-01-collapsed-pid.txt",
    "content": "java-?;[perf-10939.map] 23\njava-?;[perf-10939.map];OptoRuntime::multianewarray2_C;ObjArrayKlass::multi_allocate;TypeArrayKlass::multi_allocate;TypeArrayKlass::allocate_common;page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;cpumask_next_and;find_next_bit 1\njava-?;[perf-10939.map];OptoRuntime::multianewarray2_C;ObjArrayKlass::multi_allocate;TypeArrayKlass::multi_allocate;TypeArrayKlass::allocate_common;page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 5\njava-?;[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many 1\njava-?;[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;_raw_spin_unlock_irqrestore 1\njava-?;[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;notify_remote_via_irq 1\njava-?;[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;notify_remote_via_irq;evtchn_from_irq;irq_get_irq_data;irq_to_desc;radix_tree_lookup_element 1\njava-?;[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 23\njava-?;[unknown];[perf-10939.map] 2\njava-?;[unknown];[perf-10939.map];[perf-10939.map] 1\njava-?;[unknown];[perf-10939.map];[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 9\njava-?;[unknown];[perf-10939.map];page_fault;do_page_fault;__do_page_fault 2\njava-?;[unknown];[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 53\njava-?;[unknown];[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;find_next_bit 1\njava-?;[unknown];[perf-10939.map];retint_signal;do_notify_resume;task_work_run;task_numa_work;change_prot_numa;change_protection;change_protection_range 1\nswapper-?;start_secondary;cpu_startup_entry;arch_cpu_idle;default_idle;native_safe_halt 72\nswapper-?;x86_64_start_kernel;x86_64_start_reservations;start_kernel;rest_init;cpu_startup_entry;arch_cpu_idle;default_idle;native_safe_halt 2\n"
  },
  {
    "path": "test/results/perf-numa-stacks-01-collapsed-tid.txt",
    "content": "java-?/10992;[perf-10939.map] 4\njava-?/10992;[unknown];[perf-10939.map] 1\njava-?/10992;[unknown];[perf-10939.map];[perf-10939.map] 1\njava-?/10992;[unknown];[perf-10939.map];page_fault;do_page_fault;__do_page_fault 1\njava-?/10993;[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 2\njava-?/10993;[unknown];[perf-10939.map];[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 1\njava-?/10993;[unknown];[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 3\njava-?/10996;[perf-10939.map] 6\njava-?/10998;[unknown];[perf-10939.map];[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 2\njava-?/10998;[unknown];[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 4\njava-?/10999;[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 1\njava-?/10999;[unknown];[perf-10939.map];[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 1\njava-?/10999;[unknown];[perf-10939.map];page_fault;do_page_fault;__do_page_fault 1\njava-?/10999;[unknown];[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 4\njava-?/11000;[perf-10939.map] 6\njava-?/11001;[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 2\njava-?/11001;[unknown];[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 4\njava-?/11002;[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 3\njava-?/11002;[unknown];[perf-10939.map];[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 1\njava-?/11002;[unknown];[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 2\njava-?/11003;[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 3\njava-?/11003;[unknown];[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 2\njava-?/11003;[unknown];[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;find_next_bit 1\njava-?/11007;[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;_raw_spin_unlock_irqrestore 1\njava-?/11007;[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 2\njava-?/11007;[unknown];[perf-10939.map];[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 1\njava-?/11007;[unknown];[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 2\njava-?/11008;[unknown];[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 6\njava-?/11009;[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 1\njava-?/11009;[unknown];[perf-10939.map];[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 1\njava-?/11009;[unknown];[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 4\njava-?/11011;[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 1\njava-?/11011;[unknown];[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 5\njava-?/11011;[unknown];[perf-10939.map];retint_signal;do_notify_resume;task_work_run;task_numa_work;change_prot_numa;change_protection;change_protection_range 1\njava-?/11012;[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many 1\njava-?/11012;[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 1\njava-?/11012;[unknown];[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 5\njava-?/11013;[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;notify_remote_via_irq 1\njava-?/11013;[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 2\njava-?/11013;[unknown];[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 3\njava-?/11015;[perf-10939.map];OptoRuntime::multianewarray2_C;ObjArrayKlass::multi_allocate;TypeArrayKlass::multi_allocate;TypeArrayKlass::allocate_common;page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;cpumask_next_and;find_next_bit 1\njava-?/11015;[perf-10939.map];OptoRuntime::multianewarray2_C;ObjArrayKlass::multi_allocate;TypeArrayKlass::multi_allocate;TypeArrayKlass::allocate_common;page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 5\njava-?/11017;[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 1\njava-?/11017;[unknown];[perf-10939.map] 1\njava-?/11017;[unknown];[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 5\njava-?/11018;[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 2\njava-?/11018;[unknown];[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 4\njava-?/11020;[perf-10939.map] 7\njava-?/11021;[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;notify_remote_via_irq;evtchn_from_irq;irq_get_irq_data;irq_to_desc;radix_tree_lookup_element 1\njava-?/11021;[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 2\njava-?/11021;[unknown];[perf-10939.map];[perf-10939.map];page_fault;do_page_fault;__do_page_fault;handle_mm_fault;do_numa_page;migrate_misplaced_page;migrate_pages;try_to_unmap;try_to_unmap_anon;try_to_unmap_one;ptep_clear_flush;flush_tlb_page;native_flush_tlb_others;smp_call_function_many;xen_smp_send_call_function_ipi;__xen_send_IPI_mask;xen_send_IPI_one;xen_hypercall_event_channel_op 2\nswapper-?/0;start_secondary;cpu_startup_entry;arch_cpu_idle;default_idle;native_safe_halt 72\nswapper-?/0;x86_64_start_kernel;x86_64_start_reservations;start_kernel;rest_init;cpu_startup_entry;arch_cpu_idle;default_idle;native_safe_halt 2\n"
  },
  {
    "path": "test/results/perf-rust-Yamakaky-dcpu-collapsed-addrs.txt",
    "content": "emulator;[unknown <2e747262696c0036>];_dl_name_match_p 42632\nemulator;[unknown <40>];_dl_sysdep_start;_dl_init_paths 32156\nemulator;[unknown <40>];_dl_sysdep_start;dl_main;__strcasecmp 52068\nemulator;[unknown <40>];_dl_sysdep_start;dl_main;_dl_relocate_object 113074\nemulator;[unknown <63636762696c0036>];strcmp 60144\nemulator;__GI_____strtoull_l_internal 72243\nemulator;__GI___readlink 66557\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;_$LT$u8$u20$as$u20$core..clone..Clone$GT$::clone::h7bfab8630dda96cf 315764\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;_$LT$usize$u20$as$u20$core..iter..range..Step$GT$::add_one::h0701a52b56dc0bbb 128577\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40;core::cmp::impls::_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$usize$GT$::lt::hf4d08bdc2d45569c 247667\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::ptr::write::haabbb39ab969e5ac 254732\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::set_len::hfd64239413386906 160490\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h08724396296cdea6;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h72ebd1bc97b2075e;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h9375446625dcf9e8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::h42174e2928c223fa;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h1191ad8aa35e2822;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h2d4f8260955f00a9;_$LT$core..iter..FilterMap$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::he1189ac8e3187a50;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hb223ec6a8effeb5f;core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40;core::cmp::impls::_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$usize$GT$::lt::hf4d08bdc2d45569c 160789\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h185e3c12af3fc754;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::he13ccf618f424fa8;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::hf30fd19863432c7b;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h87371dcef7b54f45;_$LT$core..str..Split$LT$$u27$a$C$$u20$P$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h640ea8ab0b8e51ce;_$LT$core..str..SplitInternal$LT$$u27$a$C$$u20$P$GT$$GT$::next::h6ff90db1c517060d;_$LT$core..str..pattern..CharSearcher$LT$$u27$a$GT$$u20$as$u20$core..str..pattern..Searcher$LT$$u27$a$GT$$GT$::next_match::ha7c6689628ca2406;core::str::pattern::Searcher::next_match::h3b4c786aa5e821fc;_$LT$core..str..pattern..CharEqSearcher$LT$$u27$a$C$$u20$C$GT$$u20$as$u20$core..str..pattern..Searcher$LT$$u27$a$GT$$GT$::next::hbefb8ac4a49c1d1e;_$LT$core..str..CharIndices$LT$$u27$a$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h6d3c2b6db3f8302b;_$LT$core..str..Chars$LT$$u27$a$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h3192360e451206ea;core::str::next_code_point::hc208947b28200a26 161094\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h7e7c4b3a79f55d8f;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5c98bd2640d176d7;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc8817fc039bbb0b3;_$LT$core..iter..Filter$LT$I$C$$u20$P$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc46470b5838977c4;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hf6d2c4c5538b1320;_$LT$core..iter..Enumerate$LT$I$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h503f07e91a8c70cc;_$LT$core..option..Option$LT$T$GT$$GT$::map::h4d3efd64a17eb7e4 186650\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h7e7c4b3a79f55d8f;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5c98bd2640d176d7;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc8817fc039bbb0b3;_$LT$core..option..Option$LT$T$GT$$GT$::map::hbf38c6908f07f125;core::ops::impls::_$LT$impl$u20$core..ops..FnOnce$LT$A$GT$$u20$for$u20$$RF$$u27$a$u20$mut$u20$F$GT$::call_once::ha8cdcc06344fe1b5;term::terminfo::parser::compiled::parse::_$u7b$$u7b$closure$u7d$$u7d$::hf95a5d0239e6304e;core::iter::iterator::Iterator::position::h71611bea69605be3 182088\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h7e7c4b3a79f55d8f;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5c98bd2640d176d7;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc8817fc039bbb0b3;_$LT$core..option..Option$LT$T$GT$$GT$::map::hbf38c6908f07f125;core::ops::impls::_$LT$impl$u20$core..ops..FnOnce$LT$A$GT$$u20$for$u20$$RF$$u27$a$u20$mut$u20$F$GT$::call_once::ha8cdcc06344fe1b5;term::terminfo::parser::compiled::parse::_$u7b$$u7b$closure$u7d$$u7d$::hf95a5d0239e6304e;core::iter::iterator::Iterator::position::h71611bea69605be3;_$LT$core..iter..Enumerate$LT$I$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h6382d5064d2f104a;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h01cfe524df2e1837;_$LT$core..slice..Iter$LT$$u27$a$C$$u20$T$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::ha5ae786e76ac1132;core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::offset::hffec494e9fc99daf 184354\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_nocheck::h980e74df27f75c7d;_$LT$std..collections..hash..map..VacantEntry$LT$$u27$a$C$$u20$K$C$$u20$V$GT$$GT$::insert::h9082baf2d93a92c8;std::collections::hash::map::robin_hood::h47885a7d58732a87;_$LT$std..collections..hash..table..FullBucket$LT$K$C$$u20$V$C$$u20$M$GT$$GT$::displacement::h23649dceee14681b;_$LT$std..collections..hash..table..FullBucket$LT$K$C$$u20$V$C$$u20$M$GT$$u20$as$u20$core..ops..Deref$GT$::deref::hf5640e419faf6aa3;_$LT$$RF$$u27$a$u20$mut$u20$T$u20$as$u20$core..ops..Deref$GT$::deref::h9629b61700da8d48 185542\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_nocheck::h980e74df27f75c7d;_$LT$std..collections..hash..map..VacantEntry$LT$$u27$a$C$$u20$K$C$$u20$V$GT$$GT$::insert::h9082baf2d93a92c8;std::collections::hash::map::robin_hood::h47885a7d58732a87;_$LT$std..collections..hash..table..FullBucket$LT$K$C$$u20$V$C$$u20$M$GT$$u20$as$u20$std..collections..hash..table..Put$LT$K$C$$u20$V$GT$$GT$::borrow_table_mut::h7b43ee0d3891fd5f 178602\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_nocheck::h980e74df27f75c7d;std::collections::hash::map::search_hashed::hae33740b510f48a0 180495\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::reserve::h5970cef3fb225dd7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::resize::h995383f95c6d03bf;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_ordered::h7b9d42bf7a5f0d35 183668\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::reserve::h5970cef3fb225dd7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::resize::h995383f95c6d03bf;__memmove_sse2_unaligned_erms 180014\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h507e8ba941b3616a;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc915775adb42698d;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5837a103f73c01d4;_$LT$core..option..Option$LT$T$GT$$GT$::map::h0de7409612e0b28e;core::ops::impls::_$LT$impl$u20$core..ops..FnOnce$LT$A$GT$$u20$for$u20$$RF$$u27$a$u20$mut$u20$F$GT$::call_once::h493b1835d917190a;term::terminfo::parser::compiled::parse::_$u7b$$u7b$closure$u7d$$u7d$::h503fb3ffeae6899e;term::terminfo::parser::compiled::read_le_u16::hd7bae50659ca04c4;_$LT$std..io..buffered..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$::read::h0092352920edf903;std::io::impls::_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u27$a$u20$$u5b$u8$u5d$$GT$::read::he880dac0905a777b;collections::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::split_at::h9377899ac1bb5027;_$LT$$u5b$T$u5d$$u20$as$u20$core..slice..SliceExt$GT$::split_at::h80c52dadb70c5280;core::slice::_$LT$impl$u20$core..ops..Index$LT$core..ops..RangeTo$LT$usize$GT$$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index::h9c7a1847e7ff452a;core::slice::_$LT$impl$u20$core..ops..Index$LT$core..ops..Range$LT$usize$GT$$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index::h4d1325c39b2e2225;core::slice::from_raw_parts::hf2d070766f9033b0 166807\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..DerefMut$GT$::deref_mut::h1489b09ee24485ec 163021\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;collections::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::get_unchecked_mut::hecb03b761e9b7d9e;_$LT$$u5b$T$u5d$$u20$as$u20$core..slice..SliceExt$GT$::get_unchecked_mut::h49fa6b2e956b2ceb 170071\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;std::io::Read::read_to_end::hf3e43392e443d646;std::io::read_to_end::heeed5f53db31e2d5;_$LT$collections..vec..Vec$LT$T$GT$$GT$::truncate::h2f857c8801e6ea48;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..DerefMut$GT$::deref_mut::hb94ba71a1dd47d71;core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::is_null::h0535f15cf1003af9 176362\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;term::terminfo::searcher::get_dbpath_for_term::hffa8fd0e9637bc76;std::path::PathBuf::_push::h766d676eb9b04254 73671\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;_$LT$u8$u20$as$u20$core..clone..Clone$GT$::clone::h7bfab8630dda96cf 183381\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40 559435\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40;core::cmp::impls::_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$usize$GT$::lt::hf4d08bdc2d45569c 188406\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40;core::mem::swap::hcb834a1162e5ad6c 183868\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::make_hash::h992d9241b64fceb7;std::collections::hash::table::make_hash::h9f03ce4a8d5d1b78;_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::finish::h2c804330acc776d7;_$LT$core..hash..sip..SipHasher13$u20$as$u20$core..hash..Hasher$GT$::finish::h73025af53645a0f3;_$LT$core..hash..sip..Hasher$LT$S$GT$$u20$as$u20$core..hash..Hasher$GT$::finish::ha781266cba0e4a7c;_$LT$core..hash..sip..Sip13Rounds$u20$as$u20$core..hash..sip..Sip$GT$::d_rounds::hae93b8d08d9c9a13;core::num::_$LT$impl$u20$u64$GT$::wrapping_add::h021932e4ee83e791 194103\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h507e8ba941b3616a;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc915775adb42698d;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5837a103f73c01d4;_$LT$core..option..Option$LT$T$GT$$GT$::map::h0de7409612e0b28e;core::ops::impls::_$LT$impl$u20$core..ops..FnOnce$LT$A$GT$$u20$for$u20$$RF$$u27$a$u20$mut$u20$F$GT$::call_once::h493b1835d917190a;term::terminfo::parser::compiled::parse::_$u7b$$u7b$closure$u7d$$u7d$::h503fb3ffeae6899e;term::terminfo::parser::compiled::read_le_u16::hd7bae50659ca04c4;core::slice::_$LT$impl$u20$core..ops..IndexMut$LT$core..ops..RangeFrom$LT$usize$GT$$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index_mut::hc2a47196a9b3dc9f 195165\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;_$LT$collections..vec..Vec$LT$T$GT$$GT$::set_len::h32f778ca25724bf1 194314\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..DerefMut$GT$::deref_mut::h1489b09ee24485ec 194076\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h6ce9ad9125cfc58e;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h16fe3c65a4c16e46;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h84d1c44a62ed8a23;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::h0c6331f8890ff8d7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::hcb451fe86918197e;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_nocheck::h98844db7b829b7c9;std::collections::hash::map::search_hashed::hb56562c80a350a98;_$LT$std..collections..hash..table..Bucket$LT$K$C$$u20$V$C$$u20$M$GT$$GT$::new::h610d20a99611ae46;_$LT$std..collections..hash..table..Bucket$LT$K$C$$u20$V$C$$u20$M$GT$$GT$::at_index::h34ab787a9a6009ea;_$LT$std..collections..hash..table..RawTable$LT$K$C$$u20$V$GT$$GT$::first_bucket_raw::hb9d07d7e2fb8d059;std::collections::hash::table::calculate_offsets::hfe569e8904133a1b;core::num::_$LT$impl$u20$usize$GT$::overflowing_add::h4bf465fac5e6d437 194816\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;std::io::Read::read_to_end::hf3e43392e443d646;std::io::read_to_end::heeed5f53db31e2d5;_$LT$collections..vec..Vec$LT$T$GT$$GT$::resize::h33edb9dae7314c90;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::offset::h83331dc01d57b6ff 194077\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;page_fault 71141\nemulator;_dl_map_object;_dl_load_cache_lookup 86339\nemulator;_dl_start_user;_dl_start 17736\nemulator;_start 716\nemulator;_start;page_fault 3646\nemulator;je_arena_ralloc_no_move 173377\nemulator;je_arena_tcache_fill_small;page_fault 70745\nemulator;je_tcache_boot 65964\n"
  },
  {
    "path": "test/results/perf-rust-Yamakaky-dcpu-collapsed-all.txt",
    "content": "emulator;[unknown];_dl_name_match_p 42632\nemulator;[unknown];_dl_sysdep_start;_dl_init_paths 32156\nemulator;[unknown];_dl_sysdep_start;dl_main;__strcasecmp 52068\nemulator;[unknown];_dl_sysdep_start;dl_main;_dl_relocate_object 113074\nemulator;[unknown];strcmp 60144\nemulator;__GI_____strtoull_l_internal 72243\nemulator;__GI___readlink 66557\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;_$LT$u8$u20$as$u20$core..clone..Clone$GT$::clone::h7bfab8630dda96cf 315764\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;_$LT$usize$u20$as$u20$core..iter..range..Step$GT$::add_one::h0701a52b56dc0bbb 128577\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40;core::cmp::impls::_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$usize$GT$::lt::hf4d08bdc2d45569c 247667\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::ptr::write::haabbb39ab969e5ac 254732\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::set_len::hfd64239413386906 160490\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h08724396296cdea6;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h72ebd1bc97b2075e;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h9375446625dcf9e8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::h42174e2928c223fa;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h1191ad8aa35e2822;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h2d4f8260955f00a9;_$LT$core..iter..FilterMap$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::he1189ac8e3187a50;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hb223ec6a8effeb5f;core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40;core::cmp::impls::_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$usize$GT$::lt::hf4d08bdc2d45569c 160789\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h185e3c12af3fc754;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::he13ccf618f424fa8;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::hf30fd19863432c7b;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h87371dcef7b54f45;_$LT$core..str..Split$LT$$u27$a$C$$u20$P$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h640ea8ab0b8e51ce;_$LT$core..str..SplitInternal$LT$$u27$a$C$$u20$P$GT$$GT$::next::h6ff90db1c517060d;_$LT$core..str..pattern..CharSearcher$LT$$u27$a$GT$$u20$as$u20$core..str..pattern..Searcher$LT$$u27$a$GT$$GT$::next_match::ha7c6689628ca2406;core::str::pattern::Searcher::next_match::h3b4c786aa5e821fc;_$LT$core..str..pattern..CharEqSearcher$LT$$u27$a$C$$u20$C$GT$$u20$as$u20$core..str..pattern..Searcher$LT$$u27$a$GT$$GT$::next::hbefb8ac4a49c1d1e;_$LT$core..str..CharIndices$LT$$u27$a$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h6d3c2b6db3f8302b;_$LT$core..str..Chars$LT$$u27$a$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h3192360e451206ea;core::str::next_code_point::hc208947b28200a26 161094\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h7e7c4b3a79f55d8f;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5c98bd2640d176d7;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc8817fc039bbb0b3;_$LT$core..iter..Filter$LT$I$C$$u20$P$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc46470b5838977c4;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hf6d2c4c5538b1320;_$LT$core..iter..Enumerate$LT$I$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h503f07e91a8c70cc;_$LT$core..option..Option$LT$T$GT$$GT$::map::h4d3efd64a17eb7e4 186650\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h7e7c4b3a79f55d8f;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5c98bd2640d176d7;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc8817fc039bbb0b3;_$LT$core..option..Option$LT$T$GT$$GT$::map::hbf38c6908f07f125;core::ops::impls::_$LT$impl$u20$core..ops..FnOnce$LT$A$GT$$u20$for$u20$$RF$$u27$a$u20$mut$u20$F$GT$::call_once::ha8cdcc06344fe1b5;term::terminfo::parser::compiled::parse::_$u7b$$u7b$closure$u7d$$u7d$::hf95a5d0239e6304e;core::iter::iterator::Iterator::position::h71611bea69605be3 182088\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h7e7c4b3a79f55d8f;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5c98bd2640d176d7;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc8817fc039bbb0b3;_$LT$core..option..Option$LT$T$GT$$GT$::map::hbf38c6908f07f125;core::ops::impls::_$LT$impl$u20$core..ops..FnOnce$LT$A$GT$$u20$for$u20$$RF$$u27$a$u20$mut$u20$F$GT$::call_once::ha8cdcc06344fe1b5;term::terminfo::parser::compiled::parse::_$u7b$$u7b$closure$u7d$$u7d$::hf95a5d0239e6304e;core::iter::iterator::Iterator::position::h71611bea69605be3;_$LT$core..iter..Enumerate$LT$I$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h6382d5064d2f104a;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h01cfe524df2e1837;_$LT$core..slice..Iter$LT$$u27$a$C$$u20$T$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::ha5ae786e76ac1132;core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::offset::hffec494e9fc99daf 184354\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_nocheck::h980e74df27f75c7d;_$LT$std..collections..hash..map..VacantEntry$LT$$u27$a$C$$u20$K$C$$u20$V$GT$$GT$::insert::h9082baf2d93a92c8;std::collections::hash::map::robin_hood::h47885a7d58732a87;_$LT$std..collections..hash..table..FullBucket$LT$K$C$$u20$V$C$$u20$M$GT$$GT$::displacement::h23649dceee14681b;_$LT$std..collections..hash..table..FullBucket$LT$K$C$$u20$V$C$$u20$M$GT$$u20$as$u20$core..ops..Deref$GT$::deref::hf5640e419faf6aa3;_$LT$$RF$$u27$a$u20$mut$u20$T$u20$as$u20$core..ops..Deref$GT$::deref::h9629b61700da8d48 185542\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_nocheck::h980e74df27f75c7d;_$LT$std..collections..hash..map..VacantEntry$LT$$u27$a$C$$u20$K$C$$u20$V$GT$$GT$::insert::h9082baf2d93a92c8;std::collections::hash::map::robin_hood::h47885a7d58732a87;_$LT$std..collections..hash..table..FullBucket$LT$K$C$$u20$V$C$$u20$M$GT$$u20$as$u20$std..collections..hash..table..Put$LT$K$C$$u20$V$GT$$GT$::borrow_table_mut::h7b43ee0d3891fd5f 178602\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_nocheck::h980e74df27f75c7d;std::collections::hash::map::search_hashed::hae33740b510f48a0 180495\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::reserve::h5970cef3fb225dd7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::resize::h995383f95c6d03bf;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_ordered::h7b9d42bf7a5f0d35 183668\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::reserve::h5970cef3fb225dd7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::resize::h995383f95c6d03bf;__memmove_sse2_unaligned_erms 180014\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h507e8ba941b3616a;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc915775adb42698d;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5837a103f73c01d4;_$LT$core..option..Option$LT$T$GT$$GT$::map::h0de7409612e0b28e;core::ops::impls::_$LT$impl$u20$core..ops..FnOnce$LT$A$GT$$u20$for$u20$$RF$$u27$a$u20$mut$u20$F$GT$::call_once::h493b1835d917190a;term::terminfo::parser::compiled::parse::_$u7b$$u7b$closure$u7d$$u7d$::h503fb3ffeae6899e;term::terminfo::parser::compiled::read_le_u16::hd7bae50659ca04c4;_$LT$std..io..buffered..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$::read::h0092352920edf903;std::io::impls::_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u27$a$u20$$u5b$u8$u5d$$GT$::read::he880dac0905a777b;collections::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::split_at::h9377899ac1bb5027;_$LT$$u5b$T$u5d$$u20$as$u20$core..slice..SliceExt$GT$::split_at::h80c52dadb70c5280;core::slice::_$LT$impl$u20$core..ops..Index$LT$core..ops..RangeTo$LT$usize$GT$$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index::h9c7a1847e7ff452a;core::slice::_$LT$impl$u20$core..ops..Index$LT$core..ops..Range$LT$usize$GT$$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index::h4d1325c39b2e2225;core::slice::from_raw_parts::hf2d070766f9033b0 166807\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..DerefMut$GT$::deref_mut::h1489b09ee24485ec 163021\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;collections::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::get_unchecked_mut::hecb03b761e9b7d9e;_$LT$$u5b$T$u5d$$u20$as$u20$core..slice..SliceExt$GT$::get_unchecked_mut::h49fa6b2e956b2ceb 170071\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;std::io::Read::read_to_end::hf3e43392e443d646;std::io::read_to_end::heeed5f53db31e2d5;_$LT$collections..vec..Vec$LT$T$GT$$GT$::truncate::h2f857c8801e6ea48;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..DerefMut$GT$::deref_mut::hb94ba71a1dd47d71;core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::is_null::h0535f15cf1003af9 176362\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;term::terminfo::searcher::get_dbpath_for_term::hffa8fd0e9637bc76;std::path::PathBuf::_push::h766d676eb9b04254 73671\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;_$LT$u8$u20$as$u20$core..clone..Clone$GT$::clone::h7bfab8630dda96cf 183381\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40 559435\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40;core::cmp::impls::_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$usize$GT$::lt::hf4d08bdc2d45569c 188406\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40;core::mem::swap::hcb834a1162e5ad6c 183868\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::make_hash::h992d9241b64fceb7;std::collections::hash::table::make_hash::h9f03ce4a8d5d1b78;_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::finish::h2c804330acc776d7;_$LT$core..hash..sip..SipHasher13$u20$as$u20$core..hash..Hasher$GT$::finish::h73025af53645a0f3;_$LT$core..hash..sip..Hasher$LT$S$GT$$u20$as$u20$core..hash..Hasher$GT$::finish::ha781266cba0e4a7c;_$LT$core..hash..sip..Sip13Rounds$u20$as$u20$core..hash..sip..Sip$GT$::d_rounds::hae93b8d08d9c9a13;core::num::_$LT$impl$u20$u64$GT$::wrapping_add::h021932e4ee83e791 194103\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h507e8ba941b3616a;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc915775adb42698d;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5837a103f73c01d4;_$LT$core..option..Option$LT$T$GT$$GT$::map::h0de7409612e0b28e;core::ops::impls::_$LT$impl$u20$core..ops..FnOnce$LT$A$GT$$u20$for$u20$$RF$$u27$a$u20$mut$u20$F$GT$::call_once::h493b1835d917190a;term::terminfo::parser::compiled::parse::_$u7b$$u7b$closure$u7d$$u7d$::h503fb3ffeae6899e;term::terminfo::parser::compiled::read_le_u16::hd7bae50659ca04c4;core::slice::_$LT$impl$u20$core..ops..IndexMut$LT$core..ops..RangeFrom$LT$usize$GT$$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index_mut::hc2a47196a9b3dc9f 195165\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;_$LT$collections..vec..Vec$LT$T$GT$$GT$::set_len::h32f778ca25724bf1 194314\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..DerefMut$GT$::deref_mut::h1489b09ee24485ec 194076\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h6ce9ad9125cfc58e;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h16fe3c65a4c16e46;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h84d1c44a62ed8a23;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::h0c6331f8890ff8d7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::hcb451fe86918197e;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_nocheck::h98844db7b829b7c9;std::collections::hash::map::search_hashed::hb56562c80a350a98;_$LT$std..collections..hash..table..Bucket$LT$K$C$$u20$V$C$$u20$M$GT$$GT$::new::h610d20a99611ae46;_$LT$std..collections..hash..table..Bucket$LT$K$C$$u20$V$C$$u20$M$GT$$GT$::at_index::h34ab787a9a6009ea;_$LT$std..collections..hash..table..RawTable$LT$K$C$$u20$V$GT$$GT$::first_bucket_raw::hb9d07d7e2fb8d059;std::collections::hash::table::calculate_offsets::hfe569e8904133a1b;core::num::_$LT$impl$u20$usize$GT$::overflowing_add::h4bf465fac5e6d437 194816\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;std::io::Read::read_to_end::hf3e43392e443d646;std::io::read_to_end::heeed5f53db31e2d5;_$LT$collections..vec..Vec$LT$T$GT$$GT$::resize::h33edb9dae7314c90;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::offset::h83331dc01d57b6ff 194077\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;page_fault_[k] 71141\nemulator;_dl_map_object;_dl_load_cache_lookup 86339\nemulator;_dl_start_user;_dl_start 17736\nemulator;_start 716\nemulator;_start;page_fault_[k] 3646\nemulator;je_arena_ralloc_no_move 173377\nemulator;je_arena_tcache_fill_small;page_fault_[k] 70745\nemulator;je_tcache_boot 65964\n"
  },
  {
    "path": "test/results/perf-rust-Yamakaky-dcpu-collapsed-jit.txt",
    "content": "emulator;[unknown];_dl_name_match_p 42632\nemulator;[unknown];_dl_sysdep_start;_dl_init_paths 32156\nemulator;[unknown];_dl_sysdep_start;dl_main;__strcasecmp 52068\nemulator;[unknown];_dl_sysdep_start;dl_main;_dl_relocate_object 113074\nemulator;[unknown];strcmp 60144\nemulator;__GI_____strtoull_l_internal 72243\nemulator;__GI___readlink 66557\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;_$LT$u8$u20$as$u20$core..clone..Clone$GT$::clone::h7bfab8630dda96cf 315764\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;_$LT$usize$u20$as$u20$core..iter..range..Step$GT$::add_one::h0701a52b56dc0bbb 128577\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40;core::cmp::impls::_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$usize$GT$::lt::hf4d08bdc2d45569c 247667\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::ptr::write::haabbb39ab969e5ac 254732\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::set_len::hfd64239413386906 160490\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h08724396296cdea6;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h72ebd1bc97b2075e;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h9375446625dcf9e8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::h42174e2928c223fa;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h1191ad8aa35e2822;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h2d4f8260955f00a9;_$LT$core..iter..FilterMap$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::he1189ac8e3187a50;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hb223ec6a8effeb5f;core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40;core::cmp::impls::_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$usize$GT$::lt::hf4d08bdc2d45569c 160789\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h185e3c12af3fc754;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::he13ccf618f424fa8;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::hf30fd19863432c7b;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h87371dcef7b54f45;_$LT$core..str..Split$LT$$u27$a$C$$u20$P$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h640ea8ab0b8e51ce;_$LT$core..str..SplitInternal$LT$$u27$a$C$$u20$P$GT$$GT$::next::h6ff90db1c517060d;_$LT$core..str..pattern..CharSearcher$LT$$u27$a$GT$$u20$as$u20$core..str..pattern..Searcher$LT$$u27$a$GT$$GT$::next_match::ha7c6689628ca2406;core::str::pattern::Searcher::next_match::h3b4c786aa5e821fc;_$LT$core..str..pattern..CharEqSearcher$LT$$u27$a$C$$u20$C$GT$$u20$as$u20$core..str..pattern..Searcher$LT$$u27$a$GT$$GT$::next::hbefb8ac4a49c1d1e;_$LT$core..str..CharIndices$LT$$u27$a$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h6d3c2b6db3f8302b;_$LT$core..str..Chars$LT$$u27$a$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h3192360e451206ea;core::str::next_code_point::hc208947b28200a26 161094\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h7e7c4b3a79f55d8f;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5c98bd2640d176d7;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc8817fc039bbb0b3;_$LT$core..iter..Filter$LT$I$C$$u20$P$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc46470b5838977c4;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hf6d2c4c5538b1320;_$LT$core..iter..Enumerate$LT$I$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h503f07e91a8c70cc;_$LT$core..option..Option$LT$T$GT$$GT$::map::h4d3efd64a17eb7e4 186650\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h7e7c4b3a79f55d8f;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5c98bd2640d176d7;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc8817fc039bbb0b3;_$LT$core..option..Option$LT$T$GT$$GT$::map::hbf38c6908f07f125;core::ops::impls::_$LT$impl$u20$core..ops..FnOnce$LT$A$GT$$u20$for$u20$$RF$$u27$a$u20$mut$u20$F$GT$::call_once::ha8cdcc06344fe1b5;term::terminfo::parser::compiled::parse::_$u7b$$u7b$closure$u7d$$u7d$::hf95a5d0239e6304e;core::iter::iterator::Iterator::position::h71611bea69605be3 182088\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h7e7c4b3a79f55d8f;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5c98bd2640d176d7;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc8817fc039bbb0b3;_$LT$core..option..Option$LT$T$GT$$GT$::map::hbf38c6908f07f125;core::ops::impls::_$LT$impl$u20$core..ops..FnOnce$LT$A$GT$$u20$for$u20$$RF$$u27$a$u20$mut$u20$F$GT$::call_once::ha8cdcc06344fe1b5;term::terminfo::parser::compiled::parse::_$u7b$$u7b$closure$u7d$$u7d$::hf95a5d0239e6304e;core::iter::iterator::Iterator::position::h71611bea69605be3;_$LT$core..iter..Enumerate$LT$I$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h6382d5064d2f104a;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h01cfe524df2e1837;_$LT$core..slice..Iter$LT$$u27$a$C$$u20$T$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::ha5ae786e76ac1132;core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::offset::hffec494e9fc99daf 184354\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_nocheck::h980e74df27f75c7d;_$LT$std..collections..hash..map..VacantEntry$LT$$u27$a$C$$u20$K$C$$u20$V$GT$$GT$::insert::h9082baf2d93a92c8;std::collections::hash::map::robin_hood::h47885a7d58732a87;_$LT$std..collections..hash..table..FullBucket$LT$K$C$$u20$V$C$$u20$M$GT$$GT$::displacement::h23649dceee14681b;_$LT$std..collections..hash..table..FullBucket$LT$K$C$$u20$V$C$$u20$M$GT$$u20$as$u20$core..ops..Deref$GT$::deref::hf5640e419faf6aa3;_$LT$$RF$$u27$a$u20$mut$u20$T$u20$as$u20$core..ops..Deref$GT$::deref::h9629b61700da8d48 185542\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_nocheck::h980e74df27f75c7d;_$LT$std..collections..hash..map..VacantEntry$LT$$u27$a$C$$u20$K$C$$u20$V$GT$$GT$::insert::h9082baf2d93a92c8;std::collections::hash::map::robin_hood::h47885a7d58732a87;_$LT$std..collections..hash..table..FullBucket$LT$K$C$$u20$V$C$$u20$M$GT$$u20$as$u20$std..collections..hash..table..Put$LT$K$C$$u20$V$GT$$GT$::borrow_table_mut::h7b43ee0d3891fd5f 178602\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_nocheck::h980e74df27f75c7d;std::collections::hash::map::search_hashed::hae33740b510f48a0 180495\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::reserve::h5970cef3fb225dd7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::resize::h995383f95c6d03bf;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_ordered::h7b9d42bf7a5f0d35 183668\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::reserve::h5970cef3fb225dd7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::resize::h995383f95c6d03bf;__memmove_sse2_unaligned_erms 180014\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h507e8ba941b3616a;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc915775adb42698d;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5837a103f73c01d4;_$LT$core..option..Option$LT$T$GT$$GT$::map::h0de7409612e0b28e;core::ops::impls::_$LT$impl$u20$core..ops..FnOnce$LT$A$GT$$u20$for$u20$$RF$$u27$a$u20$mut$u20$F$GT$::call_once::h493b1835d917190a;term::terminfo::parser::compiled::parse::_$u7b$$u7b$closure$u7d$$u7d$::h503fb3ffeae6899e;term::terminfo::parser::compiled::read_le_u16::hd7bae50659ca04c4;_$LT$std..io..buffered..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$::read::h0092352920edf903;std::io::impls::_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u27$a$u20$$u5b$u8$u5d$$GT$::read::he880dac0905a777b;collections::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::split_at::h9377899ac1bb5027;_$LT$$u5b$T$u5d$$u20$as$u20$core..slice..SliceExt$GT$::split_at::h80c52dadb70c5280;core::slice::_$LT$impl$u20$core..ops..Index$LT$core..ops..RangeTo$LT$usize$GT$$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index::h9c7a1847e7ff452a;core::slice::_$LT$impl$u20$core..ops..Index$LT$core..ops..Range$LT$usize$GT$$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index::h4d1325c39b2e2225;core::slice::from_raw_parts::hf2d070766f9033b0 166807\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..DerefMut$GT$::deref_mut::h1489b09ee24485ec 163021\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;collections::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::get_unchecked_mut::hecb03b761e9b7d9e;_$LT$$u5b$T$u5d$$u20$as$u20$core..slice..SliceExt$GT$::get_unchecked_mut::h49fa6b2e956b2ceb 170071\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;std::io::Read::read_to_end::hf3e43392e443d646;std::io::read_to_end::heeed5f53db31e2d5;_$LT$collections..vec..Vec$LT$T$GT$$GT$::truncate::h2f857c8801e6ea48;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..DerefMut$GT$::deref_mut::hb94ba71a1dd47d71;core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::is_null::h0535f15cf1003af9 176362\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;term::terminfo::searcher::get_dbpath_for_term::hffa8fd0e9637bc76;std::path::PathBuf::_push::h766d676eb9b04254 73671\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;_$LT$u8$u20$as$u20$core..clone..Clone$GT$::clone::h7bfab8630dda96cf 183381\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40 559435\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40;core::cmp::impls::_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$usize$GT$::lt::hf4d08bdc2d45569c 188406\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40;core::mem::swap::hcb834a1162e5ad6c 183868\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::make_hash::h992d9241b64fceb7;std::collections::hash::table::make_hash::h9f03ce4a8d5d1b78;_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::finish::h2c804330acc776d7;_$LT$core..hash..sip..SipHasher13$u20$as$u20$core..hash..Hasher$GT$::finish::h73025af53645a0f3;_$LT$core..hash..sip..Hasher$LT$S$GT$$u20$as$u20$core..hash..Hasher$GT$::finish::ha781266cba0e4a7c;_$LT$core..hash..sip..Sip13Rounds$u20$as$u20$core..hash..sip..Sip$GT$::d_rounds::hae93b8d08d9c9a13;core::num::_$LT$impl$u20$u64$GT$::wrapping_add::h021932e4ee83e791 194103\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h507e8ba941b3616a;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc915775adb42698d;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5837a103f73c01d4;_$LT$core..option..Option$LT$T$GT$$GT$::map::h0de7409612e0b28e;core::ops::impls::_$LT$impl$u20$core..ops..FnOnce$LT$A$GT$$u20$for$u20$$RF$$u27$a$u20$mut$u20$F$GT$::call_once::h493b1835d917190a;term::terminfo::parser::compiled::parse::_$u7b$$u7b$closure$u7d$$u7d$::h503fb3ffeae6899e;term::terminfo::parser::compiled::read_le_u16::hd7bae50659ca04c4;core::slice::_$LT$impl$u20$core..ops..IndexMut$LT$core..ops..RangeFrom$LT$usize$GT$$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index_mut::hc2a47196a9b3dc9f 195165\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;_$LT$collections..vec..Vec$LT$T$GT$$GT$::set_len::h32f778ca25724bf1 194314\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..DerefMut$GT$::deref_mut::h1489b09ee24485ec 194076\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h6ce9ad9125cfc58e;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h16fe3c65a4c16e46;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h84d1c44a62ed8a23;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::h0c6331f8890ff8d7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::hcb451fe86918197e;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_nocheck::h98844db7b829b7c9;std::collections::hash::map::search_hashed::hb56562c80a350a98;_$LT$std..collections..hash..table..Bucket$LT$K$C$$u20$V$C$$u20$M$GT$$GT$::new::h610d20a99611ae46;_$LT$std..collections..hash..table..Bucket$LT$K$C$$u20$V$C$$u20$M$GT$$GT$::at_index::h34ab787a9a6009ea;_$LT$std..collections..hash..table..RawTable$LT$K$C$$u20$V$GT$$GT$::first_bucket_raw::hb9d07d7e2fb8d059;std::collections::hash::table::calculate_offsets::hfe569e8904133a1b;core::num::_$LT$impl$u20$usize$GT$::overflowing_add::h4bf465fac5e6d437 194816\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;std::io::Read::read_to_end::hf3e43392e443d646;std::io::read_to_end::heeed5f53db31e2d5;_$LT$collections..vec..Vec$LT$T$GT$$GT$::resize::h33edb9dae7314c90;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::offset::h83331dc01d57b6ff 194077\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;page_fault 71141\nemulator;_dl_map_object;_dl_load_cache_lookup 86339\nemulator;_dl_start_user;_dl_start 17736\nemulator;_start 716\nemulator;_start;page_fault 3646\nemulator;je_arena_ralloc_no_move 173377\nemulator;je_arena_tcache_fill_small;page_fault 70745\nemulator;je_tcache_boot 65964\n"
  },
  {
    "path": "test/results/perf-rust-Yamakaky-dcpu-collapsed-kernel.txt",
    "content": "emulator;[unknown];_dl_name_match_p 42632\nemulator;[unknown];_dl_sysdep_start;_dl_init_paths 32156\nemulator;[unknown];_dl_sysdep_start;dl_main;__strcasecmp 52068\nemulator;[unknown];_dl_sysdep_start;dl_main;_dl_relocate_object 113074\nemulator;[unknown];strcmp 60144\nemulator;__GI_____strtoull_l_internal 72243\nemulator;__GI___readlink 66557\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;_$LT$u8$u20$as$u20$core..clone..Clone$GT$::clone::h7bfab8630dda96cf 315764\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;_$LT$usize$u20$as$u20$core..iter..range..Step$GT$::add_one::h0701a52b56dc0bbb 128577\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40;core::cmp::impls::_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$usize$GT$::lt::hf4d08bdc2d45569c 247667\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::ptr::write::haabbb39ab969e5ac 254732\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::set_len::hfd64239413386906 160490\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h08724396296cdea6;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h72ebd1bc97b2075e;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h9375446625dcf9e8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::h42174e2928c223fa;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h1191ad8aa35e2822;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h2d4f8260955f00a9;_$LT$core..iter..FilterMap$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::he1189ac8e3187a50;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hb223ec6a8effeb5f;core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40;core::cmp::impls::_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$usize$GT$::lt::hf4d08bdc2d45569c 160789\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h185e3c12af3fc754;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::he13ccf618f424fa8;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::hf30fd19863432c7b;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h87371dcef7b54f45;_$LT$core..str..Split$LT$$u27$a$C$$u20$P$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h640ea8ab0b8e51ce;_$LT$core..str..SplitInternal$LT$$u27$a$C$$u20$P$GT$$GT$::next::h6ff90db1c517060d;_$LT$core..str..pattern..CharSearcher$LT$$u27$a$GT$$u20$as$u20$core..str..pattern..Searcher$LT$$u27$a$GT$$GT$::next_match::ha7c6689628ca2406;core::str::pattern::Searcher::next_match::h3b4c786aa5e821fc;_$LT$core..str..pattern..CharEqSearcher$LT$$u27$a$C$$u20$C$GT$$u20$as$u20$core..str..pattern..Searcher$LT$$u27$a$GT$$GT$::next::hbefb8ac4a49c1d1e;_$LT$core..str..CharIndices$LT$$u27$a$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h6d3c2b6db3f8302b;_$LT$core..str..Chars$LT$$u27$a$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h3192360e451206ea;core::str::next_code_point::hc208947b28200a26 161094\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h7e7c4b3a79f55d8f;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5c98bd2640d176d7;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc8817fc039bbb0b3;_$LT$core..iter..Filter$LT$I$C$$u20$P$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc46470b5838977c4;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hf6d2c4c5538b1320;_$LT$core..iter..Enumerate$LT$I$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h503f07e91a8c70cc;_$LT$core..option..Option$LT$T$GT$$GT$::map::h4d3efd64a17eb7e4 186650\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h7e7c4b3a79f55d8f;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5c98bd2640d176d7;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc8817fc039bbb0b3;_$LT$core..option..Option$LT$T$GT$$GT$::map::hbf38c6908f07f125;core::ops::impls::_$LT$impl$u20$core..ops..FnOnce$LT$A$GT$$u20$for$u20$$RF$$u27$a$u20$mut$u20$F$GT$::call_once::ha8cdcc06344fe1b5;term::terminfo::parser::compiled::parse::_$u7b$$u7b$closure$u7d$$u7d$::hf95a5d0239e6304e;core::iter::iterator::Iterator::position::h71611bea69605be3 182088\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h7e7c4b3a79f55d8f;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5c98bd2640d176d7;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc8817fc039bbb0b3;_$LT$core..option..Option$LT$T$GT$$GT$::map::hbf38c6908f07f125;core::ops::impls::_$LT$impl$u20$core..ops..FnOnce$LT$A$GT$$u20$for$u20$$RF$$u27$a$u20$mut$u20$F$GT$::call_once::ha8cdcc06344fe1b5;term::terminfo::parser::compiled::parse::_$u7b$$u7b$closure$u7d$$u7d$::hf95a5d0239e6304e;core::iter::iterator::Iterator::position::h71611bea69605be3;_$LT$core..iter..Enumerate$LT$I$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h6382d5064d2f104a;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h01cfe524df2e1837;_$LT$core..slice..Iter$LT$$u27$a$C$$u20$T$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::ha5ae786e76ac1132;core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::offset::hffec494e9fc99daf 184354\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_nocheck::h980e74df27f75c7d;_$LT$std..collections..hash..map..VacantEntry$LT$$u27$a$C$$u20$K$C$$u20$V$GT$$GT$::insert::h9082baf2d93a92c8;std::collections::hash::map::robin_hood::h47885a7d58732a87;_$LT$std..collections..hash..table..FullBucket$LT$K$C$$u20$V$C$$u20$M$GT$$GT$::displacement::h23649dceee14681b;_$LT$std..collections..hash..table..FullBucket$LT$K$C$$u20$V$C$$u20$M$GT$$u20$as$u20$core..ops..Deref$GT$::deref::hf5640e419faf6aa3;_$LT$$RF$$u27$a$u20$mut$u20$T$u20$as$u20$core..ops..Deref$GT$::deref::h9629b61700da8d48 185542\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_nocheck::h980e74df27f75c7d;_$LT$std..collections..hash..map..VacantEntry$LT$$u27$a$C$$u20$K$C$$u20$V$GT$$GT$::insert::h9082baf2d93a92c8;std::collections::hash::map::robin_hood::h47885a7d58732a87;_$LT$std..collections..hash..table..FullBucket$LT$K$C$$u20$V$C$$u20$M$GT$$u20$as$u20$std..collections..hash..table..Put$LT$K$C$$u20$V$GT$$GT$::borrow_table_mut::h7b43ee0d3891fd5f 178602\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_nocheck::h980e74df27f75c7d;std::collections::hash::map::search_hashed::hae33740b510f48a0 180495\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::reserve::h5970cef3fb225dd7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::resize::h995383f95c6d03bf;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_ordered::h7b9d42bf7a5f0d35 183668\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::reserve::h5970cef3fb225dd7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::resize::h995383f95c6d03bf;__memmove_sse2_unaligned_erms 180014\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h507e8ba941b3616a;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc915775adb42698d;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5837a103f73c01d4;_$LT$core..option..Option$LT$T$GT$$GT$::map::h0de7409612e0b28e;core::ops::impls::_$LT$impl$u20$core..ops..FnOnce$LT$A$GT$$u20$for$u20$$RF$$u27$a$u20$mut$u20$F$GT$::call_once::h493b1835d917190a;term::terminfo::parser::compiled::parse::_$u7b$$u7b$closure$u7d$$u7d$::h503fb3ffeae6899e;term::terminfo::parser::compiled::read_le_u16::hd7bae50659ca04c4;_$LT$std..io..buffered..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$::read::h0092352920edf903;std::io::impls::_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u27$a$u20$$u5b$u8$u5d$$GT$::read::he880dac0905a777b;collections::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::split_at::h9377899ac1bb5027;_$LT$$u5b$T$u5d$$u20$as$u20$core..slice..SliceExt$GT$::split_at::h80c52dadb70c5280;core::slice::_$LT$impl$u20$core..ops..Index$LT$core..ops..RangeTo$LT$usize$GT$$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index::h9c7a1847e7ff452a;core::slice::_$LT$impl$u20$core..ops..Index$LT$core..ops..Range$LT$usize$GT$$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index::h4d1325c39b2e2225;core::slice::from_raw_parts::hf2d070766f9033b0 166807\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..DerefMut$GT$::deref_mut::h1489b09ee24485ec 163021\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;collections::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::get_unchecked_mut::hecb03b761e9b7d9e;_$LT$$u5b$T$u5d$$u20$as$u20$core..slice..SliceExt$GT$::get_unchecked_mut::h49fa6b2e956b2ceb 170071\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;std::io::Read::read_to_end::hf3e43392e443d646;std::io::read_to_end::heeed5f53db31e2d5;_$LT$collections..vec..Vec$LT$T$GT$$GT$::truncate::h2f857c8801e6ea48;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..DerefMut$GT$::deref_mut::hb94ba71a1dd47d71;core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::is_null::h0535f15cf1003af9 176362\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;term::terminfo::searcher::get_dbpath_for_term::hffa8fd0e9637bc76;std::path::PathBuf::_push::h766d676eb9b04254 73671\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;_$LT$u8$u20$as$u20$core..clone..Clone$GT$::clone::h7bfab8630dda96cf 183381\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40 559435\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40;core::cmp::impls::_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$usize$GT$::lt::hf4d08bdc2d45569c 188406\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40;core::mem::swap::hcb834a1162e5ad6c 183868\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::make_hash::h992d9241b64fceb7;std::collections::hash::table::make_hash::h9f03ce4a8d5d1b78;_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::finish::h2c804330acc776d7;_$LT$core..hash..sip..SipHasher13$u20$as$u20$core..hash..Hasher$GT$::finish::h73025af53645a0f3;_$LT$core..hash..sip..Hasher$LT$S$GT$$u20$as$u20$core..hash..Hasher$GT$::finish::ha781266cba0e4a7c;_$LT$core..hash..sip..Sip13Rounds$u20$as$u20$core..hash..sip..Sip$GT$::d_rounds::hae93b8d08d9c9a13;core::num::_$LT$impl$u20$u64$GT$::wrapping_add::h021932e4ee83e791 194103\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h507e8ba941b3616a;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc915775adb42698d;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5837a103f73c01d4;_$LT$core..option..Option$LT$T$GT$$GT$::map::h0de7409612e0b28e;core::ops::impls::_$LT$impl$u20$core..ops..FnOnce$LT$A$GT$$u20$for$u20$$RF$$u27$a$u20$mut$u20$F$GT$::call_once::h493b1835d917190a;term::terminfo::parser::compiled::parse::_$u7b$$u7b$closure$u7d$$u7d$::h503fb3ffeae6899e;term::terminfo::parser::compiled::read_le_u16::hd7bae50659ca04c4;core::slice::_$LT$impl$u20$core..ops..IndexMut$LT$core..ops..RangeFrom$LT$usize$GT$$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index_mut::hc2a47196a9b3dc9f 195165\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;_$LT$collections..vec..Vec$LT$T$GT$$GT$::set_len::h32f778ca25724bf1 194314\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..DerefMut$GT$::deref_mut::h1489b09ee24485ec 194076\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h6ce9ad9125cfc58e;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h16fe3c65a4c16e46;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h84d1c44a62ed8a23;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::h0c6331f8890ff8d7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::hcb451fe86918197e;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_nocheck::h98844db7b829b7c9;std::collections::hash::map::search_hashed::hb56562c80a350a98;_$LT$std..collections..hash..table..Bucket$LT$K$C$$u20$V$C$$u20$M$GT$$GT$::new::h610d20a99611ae46;_$LT$std..collections..hash..table..Bucket$LT$K$C$$u20$V$C$$u20$M$GT$$GT$::at_index::h34ab787a9a6009ea;_$LT$std..collections..hash..table..RawTable$LT$K$C$$u20$V$GT$$GT$::first_bucket_raw::hb9d07d7e2fb8d059;std::collections::hash::table::calculate_offsets::hfe569e8904133a1b;core::num::_$LT$impl$u20$usize$GT$::overflowing_add::h4bf465fac5e6d437 194816\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;std::io::Read::read_to_end::hf3e43392e443d646;std::io::read_to_end::heeed5f53db31e2d5;_$LT$collections..vec..Vec$LT$T$GT$$GT$::resize::h33edb9dae7314c90;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::offset::h83331dc01d57b6ff 194077\nemulator;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;page_fault_[k] 71141\nemulator;_dl_map_object;_dl_load_cache_lookup 86339\nemulator;_dl_start_user;_dl_start 17736\nemulator;_start 716\nemulator;_start;page_fault_[k] 3646\nemulator;je_arena_ralloc_no_move 173377\nemulator;je_arena_tcache_fill_small;page_fault_[k] 70745\nemulator;je_tcache_boot 65964\n"
  },
  {
    "path": "test/results/perf-rust-Yamakaky-dcpu-collapsed-pid.txt",
    "content": "emulator-?;[unknown];_dl_name_match_p 42632\nemulator-?;[unknown];_dl_sysdep_start;_dl_init_paths 32156\nemulator-?;[unknown];_dl_sysdep_start;dl_main;__strcasecmp 52068\nemulator-?;[unknown];_dl_sysdep_start;dl_main;_dl_relocate_object 113074\nemulator-?;[unknown];strcmp 60144\nemulator-?;__GI_____strtoull_l_internal 72243\nemulator-?;__GI___readlink 66557\nemulator-?;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;_$LT$u8$u20$as$u20$core..clone..Clone$GT$::clone::h7bfab8630dda96cf 315764\nemulator-?;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;_$LT$usize$u20$as$u20$core..iter..range..Step$GT$::add_one::h0701a52b56dc0bbb 128577\nemulator-?;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40;core::cmp::impls::_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$usize$GT$::lt::hf4d08bdc2d45569c 247667\nemulator-?;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::ptr::write::haabbb39ab969e5ac 254732\nemulator-?;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::set_len::hfd64239413386906 160490\nemulator-?;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h08724396296cdea6;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h72ebd1bc97b2075e;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h9375446625dcf9e8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::h42174e2928c223fa;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h1191ad8aa35e2822;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h2d4f8260955f00a9;_$LT$core..iter..FilterMap$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::he1189ac8e3187a50;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hb223ec6a8effeb5f;core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40;core::cmp::impls::_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$usize$GT$::lt::hf4d08bdc2d45569c 160789\nemulator-?;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h185e3c12af3fc754;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::he13ccf618f424fa8;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::hf30fd19863432c7b;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h87371dcef7b54f45;_$LT$core..str..Split$LT$$u27$a$C$$u20$P$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h640ea8ab0b8e51ce;_$LT$core..str..SplitInternal$LT$$u27$a$C$$u20$P$GT$$GT$::next::h6ff90db1c517060d;_$LT$core..str..pattern..CharSearcher$LT$$u27$a$GT$$u20$as$u20$core..str..pattern..Searcher$LT$$u27$a$GT$$GT$::next_match::ha7c6689628ca2406;core::str::pattern::Searcher::next_match::h3b4c786aa5e821fc;_$LT$core..str..pattern..CharEqSearcher$LT$$u27$a$C$$u20$C$GT$$u20$as$u20$core..str..pattern..Searcher$LT$$u27$a$GT$$GT$::next::hbefb8ac4a49c1d1e;_$LT$core..str..CharIndices$LT$$u27$a$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h6d3c2b6db3f8302b;_$LT$core..str..Chars$LT$$u27$a$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h3192360e451206ea;core::str::next_code_point::hc208947b28200a26 161094\nemulator-?;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h7e7c4b3a79f55d8f;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5c98bd2640d176d7;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc8817fc039bbb0b3;_$LT$core..iter..Filter$LT$I$C$$u20$P$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc46470b5838977c4;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hf6d2c4c5538b1320;_$LT$core..iter..Enumerate$LT$I$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h503f07e91a8c70cc;_$LT$core..option..Option$LT$T$GT$$GT$::map::h4d3efd64a17eb7e4 186650\nemulator-?;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h7e7c4b3a79f55d8f;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5c98bd2640d176d7;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc8817fc039bbb0b3;_$LT$core..option..Option$LT$T$GT$$GT$::map::hbf38c6908f07f125;core::ops::impls::_$LT$impl$u20$core..ops..FnOnce$LT$A$GT$$u20$for$u20$$RF$$u27$a$u20$mut$u20$F$GT$::call_once::ha8cdcc06344fe1b5;term::terminfo::parser::compiled::parse::_$u7b$$u7b$closure$u7d$$u7d$::hf95a5d0239e6304e;core::iter::iterator::Iterator::position::h71611bea69605be3 182088\nemulator-?;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h7e7c4b3a79f55d8f;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5c98bd2640d176d7;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc8817fc039bbb0b3;_$LT$core..option..Option$LT$T$GT$$GT$::map::hbf38c6908f07f125;core::ops::impls::_$LT$impl$u20$core..ops..FnOnce$LT$A$GT$$u20$for$u20$$RF$$u27$a$u20$mut$u20$F$GT$::call_once::ha8cdcc06344fe1b5;term::terminfo::parser::compiled::parse::_$u7b$$u7b$closure$u7d$$u7d$::hf95a5d0239e6304e;core::iter::iterator::Iterator::position::h71611bea69605be3;_$LT$core..iter..Enumerate$LT$I$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h6382d5064d2f104a;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h01cfe524df2e1837;_$LT$core..slice..Iter$LT$$u27$a$C$$u20$T$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::ha5ae786e76ac1132;core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::offset::hffec494e9fc99daf 184354\nemulator-?;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_nocheck::h980e74df27f75c7d;_$LT$std..collections..hash..map..VacantEntry$LT$$u27$a$C$$u20$K$C$$u20$V$GT$$GT$::insert::h9082baf2d93a92c8;std::collections::hash::map::robin_hood::h47885a7d58732a87;_$LT$std..collections..hash..table..FullBucket$LT$K$C$$u20$V$C$$u20$M$GT$$GT$::displacement::h23649dceee14681b;_$LT$std..collections..hash..table..FullBucket$LT$K$C$$u20$V$C$$u20$M$GT$$u20$as$u20$core..ops..Deref$GT$::deref::hf5640e419faf6aa3;_$LT$$RF$$u27$a$u20$mut$u20$T$u20$as$u20$core..ops..Deref$GT$::deref::h9629b61700da8d48 185542\nemulator-?;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_nocheck::h980e74df27f75c7d;_$LT$std..collections..hash..map..VacantEntry$LT$$u27$a$C$$u20$K$C$$u20$V$GT$$GT$::insert::h9082baf2d93a92c8;std::collections::hash::map::robin_hood::h47885a7d58732a87;_$LT$std..collections..hash..table..FullBucket$LT$K$C$$u20$V$C$$u20$M$GT$$u20$as$u20$std..collections..hash..table..Put$LT$K$C$$u20$V$GT$$GT$::borrow_table_mut::h7b43ee0d3891fd5f 178602\nemulator-?;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_nocheck::h980e74df27f75c7d;std::collections::hash::map::search_hashed::hae33740b510f48a0 180495\nemulator-?;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::reserve::h5970cef3fb225dd7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::resize::h995383f95c6d03bf;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_ordered::h7b9d42bf7a5f0d35 183668\nemulator-?;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::reserve::h5970cef3fb225dd7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::resize::h995383f95c6d03bf;__memmove_sse2_unaligned_erms 180014\nemulator-?;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h507e8ba941b3616a;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc915775adb42698d;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5837a103f73c01d4;_$LT$core..option..Option$LT$T$GT$$GT$::map::h0de7409612e0b28e;core::ops::impls::_$LT$impl$u20$core..ops..FnOnce$LT$A$GT$$u20$for$u20$$RF$$u27$a$u20$mut$u20$F$GT$::call_once::h493b1835d917190a;term::terminfo::parser::compiled::parse::_$u7b$$u7b$closure$u7d$$u7d$::h503fb3ffeae6899e;term::terminfo::parser::compiled::read_le_u16::hd7bae50659ca04c4;_$LT$std..io..buffered..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$::read::h0092352920edf903;std::io::impls::_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u27$a$u20$$u5b$u8$u5d$$GT$::read::he880dac0905a777b;collections::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::split_at::h9377899ac1bb5027;_$LT$$u5b$T$u5d$$u20$as$u20$core..slice..SliceExt$GT$::split_at::h80c52dadb70c5280;core::slice::_$LT$impl$u20$core..ops..Index$LT$core..ops..RangeTo$LT$usize$GT$$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index::h9c7a1847e7ff452a;core::slice::_$LT$impl$u20$core..ops..Index$LT$core..ops..Range$LT$usize$GT$$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index::h4d1325c39b2e2225;core::slice::from_raw_parts::hf2d070766f9033b0 166807\nemulator-?;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..DerefMut$GT$::deref_mut::h1489b09ee24485ec 163021\nemulator-?;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;collections::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::get_unchecked_mut::hecb03b761e9b7d9e;_$LT$$u5b$T$u5d$$u20$as$u20$core..slice..SliceExt$GT$::get_unchecked_mut::h49fa6b2e956b2ceb 170071\nemulator-?;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;std::io::Read::read_to_end::hf3e43392e443d646;std::io::read_to_end::heeed5f53db31e2d5;_$LT$collections..vec..Vec$LT$T$GT$$GT$::truncate::h2f857c8801e6ea48;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..DerefMut$GT$::deref_mut::hb94ba71a1dd47d71;core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::is_null::h0535f15cf1003af9 176362\nemulator-?;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;term::terminfo::searcher::get_dbpath_for_term::hffa8fd0e9637bc76;std::path::PathBuf::_push::h766d676eb9b04254 73671\nemulator-?;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;_$LT$u8$u20$as$u20$core..clone..Clone$GT$::clone::h7bfab8630dda96cf 183381\nemulator-?;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40 559435\nemulator-?;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40;core::cmp::impls::_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$usize$GT$::lt::hf4d08bdc2d45569c 188406\nemulator-?;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40;core::mem::swap::hcb834a1162e5ad6c 183868\nemulator-?;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::make_hash::h992d9241b64fceb7;std::collections::hash::table::make_hash::h9f03ce4a8d5d1b78;_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::finish::h2c804330acc776d7;_$LT$core..hash..sip..SipHasher13$u20$as$u20$core..hash..Hasher$GT$::finish::h73025af53645a0f3;_$LT$core..hash..sip..Hasher$LT$S$GT$$u20$as$u20$core..hash..Hasher$GT$::finish::ha781266cba0e4a7c;_$LT$core..hash..sip..Sip13Rounds$u20$as$u20$core..hash..sip..Sip$GT$::d_rounds::hae93b8d08d9c9a13;core::num::_$LT$impl$u20$u64$GT$::wrapping_add::h021932e4ee83e791 194103\nemulator-?;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h507e8ba941b3616a;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc915775adb42698d;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5837a103f73c01d4;_$LT$core..option..Option$LT$T$GT$$GT$::map::h0de7409612e0b28e;core::ops::impls::_$LT$impl$u20$core..ops..FnOnce$LT$A$GT$$u20$for$u20$$RF$$u27$a$u20$mut$u20$F$GT$::call_once::h493b1835d917190a;term::terminfo::parser::compiled::parse::_$u7b$$u7b$closure$u7d$$u7d$::h503fb3ffeae6899e;term::terminfo::parser::compiled::read_le_u16::hd7bae50659ca04c4;core::slice::_$LT$impl$u20$core..ops..IndexMut$LT$core..ops..RangeFrom$LT$usize$GT$$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index_mut::hc2a47196a9b3dc9f 195165\nemulator-?;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;_$LT$collections..vec..Vec$LT$T$GT$$GT$::set_len::h32f778ca25724bf1 194314\nemulator-?;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..DerefMut$GT$::deref_mut::h1489b09ee24485ec 194076\nemulator-?;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h6ce9ad9125cfc58e;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h16fe3c65a4c16e46;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h84d1c44a62ed8a23;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::h0c6331f8890ff8d7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::hcb451fe86918197e;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_nocheck::h98844db7b829b7c9;std::collections::hash::map::search_hashed::hb56562c80a350a98;_$LT$std..collections..hash..table..Bucket$LT$K$C$$u20$V$C$$u20$M$GT$$GT$::new::h610d20a99611ae46;_$LT$std..collections..hash..table..Bucket$LT$K$C$$u20$V$C$$u20$M$GT$$GT$::at_index::h34ab787a9a6009ea;_$LT$std..collections..hash..table..RawTable$LT$K$C$$u20$V$GT$$GT$::first_bucket_raw::hb9d07d7e2fb8d059;std::collections::hash::table::calculate_offsets::hfe569e8904133a1b;core::num::_$LT$impl$u20$usize$GT$::overflowing_add::h4bf465fac5e6d437 194816\nemulator-?;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;std::io::Read::read_to_end::hf3e43392e443d646;std::io::read_to_end::heeed5f53db31e2d5;_$LT$collections..vec..Vec$LT$T$GT$$GT$::resize::h33edb9dae7314c90;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::offset::h83331dc01d57b6ff 194077\nemulator-?;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;page_fault 71141\nemulator-?;_dl_map_object;_dl_load_cache_lookup 86339\nemulator-?;_dl_start_user;_dl_start 17736\nemulator-?;_start 716\nemulator-?;_start;page_fault 3646\nemulator-?;je_arena_ralloc_no_move 173377\nemulator-?;je_arena_tcache_fill_small;page_fault 70745\nemulator-?;je_tcache_boot 65964\n"
  },
  {
    "path": "test/results/perf-rust-Yamakaky-dcpu-collapsed-tid.txt",
    "content": "emulator-?/4152;[unknown];_dl_name_match_p 42632\nemulator-?/4152;[unknown];_dl_sysdep_start;_dl_init_paths 32156\nemulator-?/4152;[unknown];_dl_sysdep_start;dl_main;__strcasecmp 52068\nemulator-?/4152;[unknown];_dl_sysdep_start;dl_main;_dl_relocate_object 113074\nemulator-?/4152;[unknown];strcmp 60144\nemulator-?/4152;__GI_____strtoull_l_internal 72243\nemulator-?/4152;__GI___readlink 66557\nemulator-?/4152;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;_$LT$u8$u20$as$u20$core..clone..Clone$GT$::clone::h7bfab8630dda96cf 315764\nemulator-?/4152;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;_$LT$usize$u20$as$u20$core..iter..range..Step$GT$::add_one::h0701a52b56dc0bbb 128577\nemulator-?/4152;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40;core::cmp::impls::_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$usize$GT$::lt::hf4d08bdc2d45569c 247667\nemulator-?/4152;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::ptr::write::haabbb39ab969e5ac 254732\nemulator-?/4152;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::set_len::hfd64239413386906 160490\nemulator-?/4152;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h08724396296cdea6;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h72ebd1bc97b2075e;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h9375446625dcf9e8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::h42174e2928c223fa;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h1191ad8aa35e2822;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h2d4f8260955f00a9;_$LT$core..iter..FilterMap$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::he1189ac8e3187a50;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hb223ec6a8effeb5f;core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40;core::cmp::impls::_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$usize$GT$::lt::hf4d08bdc2d45569c 160789\nemulator-?/4152;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h185e3c12af3fc754;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::he13ccf618f424fa8;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::hf30fd19863432c7b;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h87371dcef7b54f45;_$LT$core..str..Split$LT$$u27$a$C$$u20$P$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h640ea8ab0b8e51ce;_$LT$core..str..SplitInternal$LT$$u27$a$C$$u20$P$GT$$GT$::next::h6ff90db1c517060d;_$LT$core..str..pattern..CharSearcher$LT$$u27$a$GT$$u20$as$u20$core..str..pattern..Searcher$LT$$u27$a$GT$$GT$::next_match::ha7c6689628ca2406;core::str::pattern::Searcher::next_match::h3b4c786aa5e821fc;_$LT$core..str..pattern..CharEqSearcher$LT$$u27$a$C$$u20$C$GT$$u20$as$u20$core..str..pattern..Searcher$LT$$u27$a$GT$$GT$::next::hbefb8ac4a49c1d1e;_$LT$core..str..CharIndices$LT$$u27$a$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h6d3c2b6db3f8302b;_$LT$core..str..Chars$LT$$u27$a$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h3192360e451206ea;core::str::next_code_point::hc208947b28200a26 161094\nemulator-?/4152;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h7e7c4b3a79f55d8f;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5c98bd2640d176d7;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc8817fc039bbb0b3;_$LT$core..iter..Filter$LT$I$C$$u20$P$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc46470b5838977c4;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hf6d2c4c5538b1320;_$LT$core..iter..Enumerate$LT$I$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h503f07e91a8c70cc;_$LT$core..option..Option$LT$T$GT$$GT$::map::h4d3efd64a17eb7e4 186650\nemulator-?/4152;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h7e7c4b3a79f55d8f;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5c98bd2640d176d7;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc8817fc039bbb0b3;_$LT$core..option..Option$LT$T$GT$$GT$::map::hbf38c6908f07f125;core::ops::impls::_$LT$impl$u20$core..ops..FnOnce$LT$A$GT$$u20$for$u20$$RF$$u27$a$u20$mut$u20$F$GT$::call_once::ha8cdcc06344fe1b5;term::terminfo::parser::compiled::parse::_$u7b$$u7b$closure$u7d$$u7d$::hf95a5d0239e6304e;core::iter::iterator::Iterator::position::h71611bea69605be3 182088\nemulator-?/4152;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h7e7c4b3a79f55d8f;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5c98bd2640d176d7;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc8817fc039bbb0b3;_$LT$core..option..Option$LT$T$GT$$GT$::map::hbf38c6908f07f125;core::ops::impls::_$LT$impl$u20$core..ops..FnOnce$LT$A$GT$$u20$for$u20$$RF$$u27$a$u20$mut$u20$F$GT$::call_once::ha8cdcc06344fe1b5;term::terminfo::parser::compiled::parse::_$u7b$$u7b$closure$u7d$$u7d$::hf95a5d0239e6304e;core::iter::iterator::Iterator::position::h71611bea69605be3;_$LT$core..iter..Enumerate$LT$I$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h6382d5064d2f104a;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h01cfe524df2e1837;_$LT$core..slice..Iter$LT$$u27$a$C$$u20$T$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::ha5ae786e76ac1132;core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::offset::hffec494e9fc99daf 184354\nemulator-?/4152;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_nocheck::h980e74df27f75c7d;_$LT$std..collections..hash..map..VacantEntry$LT$$u27$a$C$$u20$K$C$$u20$V$GT$$GT$::insert::h9082baf2d93a92c8;std::collections::hash::map::robin_hood::h47885a7d58732a87;_$LT$std..collections..hash..table..FullBucket$LT$K$C$$u20$V$C$$u20$M$GT$$GT$::displacement::h23649dceee14681b;_$LT$std..collections..hash..table..FullBucket$LT$K$C$$u20$V$C$$u20$M$GT$$u20$as$u20$core..ops..Deref$GT$::deref::hf5640e419faf6aa3;_$LT$$RF$$u27$a$u20$mut$u20$T$u20$as$u20$core..ops..Deref$GT$::deref::h9629b61700da8d48 185542\nemulator-?/4152;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_nocheck::h980e74df27f75c7d;_$LT$std..collections..hash..map..VacantEntry$LT$$u27$a$C$$u20$K$C$$u20$V$GT$$GT$::insert::h9082baf2d93a92c8;std::collections::hash::map::robin_hood::h47885a7d58732a87;_$LT$std..collections..hash..table..FullBucket$LT$K$C$$u20$V$C$$u20$M$GT$$u20$as$u20$std..collections..hash..table..Put$LT$K$C$$u20$V$GT$$GT$::borrow_table_mut::h7b43ee0d3891fd5f 178602\nemulator-?/4152;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_nocheck::h980e74df27f75c7d;std::collections::hash::map::search_hashed::hae33740b510f48a0 180495\nemulator-?/4152;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::reserve::h5970cef3fb225dd7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::resize::h995383f95c6d03bf;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_ordered::h7b9d42bf7a5f0d35 183668\nemulator-?/4152;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::reserve::h5970cef3fb225dd7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::resize::h995383f95c6d03bf;__memmove_sse2_unaligned_erms 180014\nemulator-?/4152;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h507e8ba941b3616a;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc915775adb42698d;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5837a103f73c01d4;_$LT$core..option..Option$LT$T$GT$$GT$::map::h0de7409612e0b28e;core::ops::impls::_$LT$impl$u20$core..ops..FnOnce$LT$A$GT$$u20$for$u20$$RF$$u27$a$u20$mut$u20$F$GT$::call_once::h493b1835d917190a;term::terminfo::parser::compiled::parse::_$u7b$$u7b$closure$u7d$$u7d$::h503fb3ffeae6899e;term::terminfo::parser::compiled::read_le_u16::hd7bae50659ca04c4;_$LT$std..io..buffered..BufReader$LT$R$GT$$u20$as$u20$std..io..Read$GT$::read::h0092352920edf903;std::io::impls::_$LT$impl$u20$std..io..Read$u20$for$u20$$RF$$u27$a$u20$$u5b$u8$u5d$$GT$::read::he880dac0905a777b;collections::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::split_at::h9377899ac1bb5027;_$LT$$u5b$T$u5d$$u20$as$u20$core..slice..SliceExt$GT$::split_at::h80c52dadb70c5280;core::slice::_$LT$impl$u20$core..ops..Index$LT$core..ops..RangeTo$LT$usize$GT$$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index::h9c7a1847e7ff452a;core::slice::_$LT$impl$u20$core..ops..Index$LT$core..ops..Range$LT$usize$GT$$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index::h4d1325c39b2e2225;core::slice::from_raw_parts::hf2d070766f9033b0 166807\nemulator-?/4152;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..DerefMut$GT$::deref_mut::h1489b09ee24485ec 163021\nemulator-?/4152;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;collections::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::get_unchecked_mut::hecb03b761e9b7d9e;_$LT$$u5b$T$u5d$$u20$as$u20$core..slice..SliceExt$GT$::get_unchecked_mut::h49fa6b2e956b2ceb 170071\nemulator-?/4152;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;std::io::Read::read_to_end::hf3e43392e443d646;std::io::read_to_end::heeed5f53db31e2d5;_$LT$collections..vec..Vec$LT$T$GT$$GT$::truncate::h2f857c8801e6ea48;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..DerefMut$GT$::deref_mut::hb94ba71a1dd47d71;core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::is_null::h0535f15cf1003af9 176362\nemulator-?/4152;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stderr::h99e770fdfcb59b6c;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::hcd1c44cd143417f6;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;term::terminfo::searcher::get_dbpath_for_term::hffa8fd0e9637bc76;std::path::PathBuf::_push::h766d676eb9b04254 73671\nemulator-?/4152;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;_$LT$u8$u20$as$u20$core..clone..Clone$GT$::clone::h7bfab8630dda96cf 183381\nemulator-?/4152;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40 559435\nemulator-?/4152;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40;core::cmp::impls::_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$usize$GT$::lt::hf4d08bdc2d45569c 188406\nemulator-?/4152;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::new::h893d205748cacdd5;_$LT$std..io..buffered..BufReader$LT$R$GT$$GT$::with_capacity::h149b1cb009d20694;collections::vec::from_elem::h0cb09490c5e14fb9;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::iter::range::_$LT$impl$u20$core..iter..iterator..Iterator$u20$for$u20$core..ops..Range$LT$A$GT$$GT$::next::hd0b7b2668add6c40;core::mem::swap::hcb834a1162e5ad6c 183868\nemulator-?/4152;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h3b339c4ccaa2a490;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::hfcc04b97f5e4cef8;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h3e3cdf90b15b4d33;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::hdf73438726a85d11;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::h111f2759872ecfc7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::make_hash::h992d9241b64fceb7;std::collections::hash::table::make_hash::h9f03ce4a8d5d1b78;_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::finish::h2c804330acc776d7;_$LT$core..hash..sip..SipHasher13$u20$as$u20$core..hash..Hasher$GT$::finish::h73025af53645a0f3;_$LT$core..hash..sip..Hasher$LT$S$GT$$u20$as$u20$core..hash..Hasher$GT$::finish::ha781266cba0e4a7c;_$LT$core..hash..sip..Sip13Rounds$u20$as$u20$core..hash..sip..Sip$GT$::d_rounds::hae93b8d08d9c9a13;core::num::_$LT$impl$u20$u64$GT$::wrapping_add::h021932e4ee83e791 194103\nemulator-?/4152;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;_$LT$$RF$$u27$a$u20$mut$u20$I$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h507e8ba941b3616a;_$LT$$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$..from_iter..Adapter$LT$Iter$C$$u20$E$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::hc915775adb42698d;_$LT$core..iter..Map$LT$I$C$$u20$F$GT$$u20$as$u20$core..iter..iterator..Iterator$GT$::next::h5837a103f73c01d4;_$LT$core..option..Option$LT$T$GT$$GT$::map::h0de7409612e0b28e;core::ops::impls::_$LT$impl$u20$core..ops..FnOnce$LT$A$GT$$u20$for$u20$$RF$$u27$a$u20$mut$u20$F$GT$::call_once::h493b1835d917190a;term::terminfo::parser::compiled::parse::_$u7b$$u7b$closure$u7d$$u7d$::h503fb3ffeae6899e;term::terminfo::parser::compiled::read_le_u16::hd7bae50659ca04c4;core::slice::_$LT$impl$u20$core..ops..IndexMut$LT$core..ops..RangeFrom$LT$usize$GT$$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index_mut::hc2a47196a9b3dc9f 195165\nemulator-?/4152;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;_$LT$collections..vec..Vec$LT$T$GT$$GT$::set_len::h32f778ca25724bf1 194314\nemulator-?/4152;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h53b7863e73fadbfc;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h7ad818accf02e73a;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$T$GT$$GT$::from_iter::h461e3a924bca1725;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_desugared::h5bbb8e6b5a245d7f;_$LT$collections..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..DerefMut$GT$::deref_mut::h1489b09ee24485ec 194076\nemulator-?/4152;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;core::iter::iterator::Iterator::collect::h6ce9ad9125cfc58e;_$LT$core..result..Result$LT$V$C$$u20$E$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$core..result..Result$LT$A$C$$u20$E$GT$$GT$$GT$::from_iter::h16fe3c65a4c16e46;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..FromIterator$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::from_iter::h84d1c44a62ed8a23;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$u20$as$u20$core..iter..traits..Extend$LT$$LP$K$C$$u20$V$RP$$GT$$GT$::extend::h0c6331f8890ff8d7;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert::hcb451fe86918197e;_$LT$std..collections..hash..map..HashMap$LT$K$C$$u20$V$C$$u20$S$GT$$GT$::insert_hashed_nocheck::h98844db7b829b7c9;std::collections::hash::map::search_hashed::hb56562c80a350a98;_$LT$std..collections..hash..table..Bucket$LT$K$C$$u20$V$C$$u20$M$GT$$GT$::new::h610d20a99611ae46;_$LT$std..collections..hash..table..Bucket$LT$K$C$$u20$V$C$$u20$M$GT$$GT$::at_index::h34ab787a9a6009ea;_$LT$std..collections..hash..table..RawTable$LT$K$C$$u20$V$GT$$GT$::first_bucket_raw::hb9d07d7e2fb8d059;std::collections::hash::table::calculate_offsets::hfe569e8904133a1b;core::num::_$LT$impl$u20$usize$GT$::overflowing_add::h4bf465fac5e6d437 194816\nemulator-?/4152;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;emulator::main_ret::hc4b7fa9090639ebe;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;log::set_logger::hfce3bfc5d262a203;log::set_logger_raw::h2040ab7e0793ea3f;log::set_logger::_$u7b$$u7b$closure$u7d$$u7d$::hcb7821323b596727;simplelog::termlog::TermLogger::init::_$u7b$$u7b$closure$u7d$$u7d$::h347f6695ed91405f;simplelog::termlog::TermLogger::new::h94d15a7bc0cbc21f;term::stdout::hc71a921b9549a869;_$LT$term..terminfo..TerminfoTerminal$LT$T$GT$$GT$::new::h52a3a52cf0fd4041;term::terminfo::TermInfo::from_env::h7aa5bbfa652bcb0d;term::terminfo::TermInfo::from_name::h721edfed0d4e6840;_$LT$core..result..Result$LT$T$C$$u20$E$GT$$GT$::and_then::h47fa4b8545196b9b;term::terminfo::TermInfo::from_name::_$u7b$$u7b$closure$u7d$$u7d$::hbdb8aa57609652e0;term::terminfo::TermInfo::from_path::hc007f27f9c5301db;term::terminfo::TermInfo::_from_path::h51064971a80093cd;term::terminfo::parser::compiled::parse::h0bfa24a8d6483291;std::io::Read::read_to_end::hf3e43392e443d646;std::io::read_to_end::heeed5f53db31e2d5;_$LT$collections..vec..Vec$LT$T$GT$$GT$::resize::h33edb9dae7314c90;_$LT$collections..vec..Vec$LT$T$GT$$GT$::extend_with_element::hadc3afe1b04eb21a;core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::offset::h83331dc01d57b6ff 194077\nemulator-?/4152;__rust_maybe_catch_panic;emulator::main::hc2aaa9b4591a10c7;simplelog::termlog::TermLogger::init::ha7463b1622ff979e;page_fault 71141\nemulator-?/4152;_dl_map_object;_dl_load_cache_lookup 86339\nemulator-?/4152;_dl_start_user;_dl_start 17736\nemulator-?/4152;_start 716\nemulator-?/4152;_start;page_fault 3646\nemulator-?/4152;je_arena_ralloc_no_move 173377\nemulator-?/4152;je_arena_tcache_fill_small;page_fault 70745\nemulator-?/4152;je_tcache_boot 65964\n"
  },
  {
    "path": "test/results/perf-vertx-stacks-01-collapsed-addrs.txt",
    "content": "java;read;check_events;hypercall_page 1\njava;start_thread;java_start;GCTaskThread::run;ScavengeRootsTask::do_it;ClassLoaderDataGraph::oops_do;ClassLoaderData::oops_do;PSScavengeKlassClosure::do_klass 1\njava;start_thread;java_start;GCTaskThread::run;StealTask::do_it;PSPromotionManager::drain_stacks_depth;oopDesc* PSPromotionManager::copy_to_survivor_space<false>;InstanceKlass::oop_push_contents 1\njava;start_thread;java_start;GCTaskThread::run;StealTask::do_it;ParallelTaskTerminator::offer_termination 5\njava;start_thread;java_start;GCTaskThread::run;StealTask::do_it;SpinPause 7\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/buffer/AbstractByteBufAllocator:.directBuffer 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/buffer/AbstractReferenceCountedByteBuf:.release 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;java/util/concurrent/ConcurrentHashMap:.get 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/mozilla/javascript/Context:.getWrapFactory 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived 3\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/ScriptableObject:.getParentScope 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/WrapFactory:.wrap;java/util/HashMap:.get 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/WrapFactory:.wrapAsJavaObject 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/WrapFactory:.wrapAsJavaObject;java/util/HashMap:.get 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.getObjectProp 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.getObjectProp;org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.getObjectProp;vtable chunks 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.name;org/mozilla/javascript/IdScriptableObject:.get 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.nameOrFunction;org/mozilla/javascript/ScriptableObject$Slot:.getValue 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/IdScriptableObject:.has 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/IdScriptableObject:.has;org/mozilla/javascript/ScriptableObject:.getSlot 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/IdScriptableObject:.put;org/mozilla/javascript/ScriptableObject:.getSlot 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/IdScriptableObject:.setAttributes 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/MemberBox:.invoke 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/WrapFactory:.wrap 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.findFunction 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaObject:.get 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.createFunctionActivation;org/mozilla/javascript/IdScriptableObject:.get;org/mozilla/javascript/ScriptableObject:.getSlot 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.createFunctionActivation;org/mozilla/javascript/IdScriptableObject:.put;org/mozilla/javascript/ScriptableObject:.getSlot;org/mozilla/javascript/ScriptableObject:.createSlot 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.createFunctionActivation;org/mozilla/javascript/IdScriptableObject:.setAttributes 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.createFunctionActivation;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.getObjectProp;org/mozilla/javascript/ScriptableObject$Slot:.getValue 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis;org/mozilla/javascript/NativeJavaObject:.get;java/util/HashMap:.get 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;jint_disjoint_arraycopy 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/IdScriptableObject:.get 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/IdScriptableObject:.has 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.createFunctionActivation 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.createFunctionActivation;org/mozilla/javascript/IdScriptableObject:.put;org/mozilla/javascript/ScriptableObject:.getSlot;org/mozilla/javascript/ScriptableObject:.createSlot 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.createFunctionActivation;org/mozilla/javascript/IdScriptableObject:.setAttributes 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.getObjectProp;org/mozilla/javascript/IdScriptableObject:.get;org/mozilla/javascript/ScriptableObject:.getSlot 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.nameOrFunction;org/mozilla/javascript/IdScriptableObject:.get;org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.put 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.put;org/mozilla/javascript/ScriptableObject:.getSlot;org/mozilla/javascript/ScriptableObject:.createSlot 3\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/ScriptableObject:.getSlot 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.setObjectProp;vtable chunks 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/NativeFunction:.initScriptFunction 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/ScriptRuntime:.createFunctionActivation 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.createFunctionActivation 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.createFunctionActivation;org/mozilla/javascript/IdScriptableObject:.get 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.has 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.put 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.put;org/mozilla/javascript/ScriptableObject:.getSlot;org/mozilla/javascript/ScriptableObject:.createSlot 6\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptableObject:.getParentScope 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.has 4\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.has;org/mozilla/javascript/ScriptableObject:.getSlot 5\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.put 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.put;org/mozilla/javascript/ScriptableObject:.getSlot 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.put;org/mozilla/javascript/ScriptableObject:.getSlot;org/mozilla/javascript/ScriptableObject:.createSlot 6\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptableObject:.getPrototype 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptableObject:.getParentScope 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/TopLevel:.getBuiltinPrototype 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/optimizer/OptRuntime:.call2 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/ScriptRuntime:.name;org/mozilla/javascript/ScriptRuntime:.nameOrFunction;vtable chunks 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.has;org/mozilla/javascript/ScriptableObject:.getSlot 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.createFunctionActivation 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.createFunctionActivation;org/mozilla/javascript/IdScriptableObject:.setAttributes 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.createFunctionActivation;org/mozilla/javascript/TopLevel:.getBuiltinPrototype 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.put;org/mozilla/javascript/ScriptableObject:.getSlot;org/mozilla/javascript/ScriptableObject:.createSlot 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/ScriptRuntime:.indexFromString 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/ScriptRuntime:.setObjectElem;org/mozilla/javascript/ScriptRuntime:.indexFromString 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;io/netty/handler/codec/http/DefaultHttpHeaders:.set 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke 3\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/channel/AbstractChannelHandlerContext:.write 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/channel/AbstractChannelHandlerContext:.write;org/vertx/java/core/http/impl/VertxHttpHandler:.write 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/channel/AbstractChannelHandlerContext:.write;org/vertx/java/core/http/impl/VertxHttpHandler:.write;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/handler/codec/MessageToMessageEncoder:.write 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/channel/AbstractChannelHandlerContext:.write;org/vertx/java/core/http/impl/VertxHttpHandler:.write;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/handler/codec/MessageToMessageEncoder:.write;io/netty/buffer/AbstractByteBuf:.writeBytes 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/channel/AbstractChannelHandlerContext:.write;org/vertx/java/core/http/impl/VertxHttpHandler:.write;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/handler/codec/MessageToMessageEncoder:.write;io/netty/handler/codec/http/HttpObjectEncoder:.encode;io/netty/buffer/AbstractByteBuf:.writeBytes 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/channel/AbstractChannelHandlerContext:.write;org/vertx/java/core/http/impl/VertxHttpHandler:.write;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/handler/codec/MessageToMessageEncoder:.write;io/netty/handler/codec/http/HttpObjectEncoder:.encode;io/netty/buffer/AbstractByteBufAllocator:.directBuffer 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/channel/AbstractChannelHandlerContext:.write;org/vertx/java/core/http/impl/VertxHttpHandler:.write;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/handler/codec/MessageToMessageEncoder:.write;io/netty/handler/codec/http/HttpObjectEncoder:.encode;io/netty/buffer/AbstractByteBufAllocator:.directBuffer;io/netty/util/concurrent/FastThreadLocal:.get 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/channel/AbstractChannelHandlerContext:.write;org/vertx/java/core/http/impl/VertxHttpHandler:.write;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/handler/codec/MessageToMessageEncoder:.write;io/netty/handler/codec/http/HttpObjectEncoder:.encode;java/util/ArrayList:.add 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/channel/AbstractChannelHandlerContext:.write;org/vertx/java/core/http/impl/VertxHttpHandler:.write;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/handler/codec/MessageToMessageEncoder:.write;io/netty/util/internal/RecyclableArrayList:.newInstance;io/netty/util/concurrent/FastThreadLocal:.get 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/channel/AbstractChannelHandlerContext:.write;org/vertx/java/core/http/impl/VertxHttpHandler:.write;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/handler/codec/MessageToMessageEncoder:.write;java/util/ArrayList:.ensureExplicitCapacity 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/channel/AbstractChannelHandlerContext:.write;org/vertx/java/core/http/impl/VertxHttpHandler:.write;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/handler/codec/MessageToMessageEncoder:.write;vtable chunks 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke;io/netty/channel/AbstractChannelHandlerContext:.write;org/vertx/java/core/http/impl/VertxHttpHandler:.write 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke;io/netty/handler/codec/http/DefaultHttpHeaders:.add0 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke;io/netty/handler/codec/http/DefaultHttpHeaders:.set 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke;sun/nio/cs/UTF_8$Encoder:.<init>;jbyte_disjoint_arraycopy 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.name;org/mozilla/javascript/ScriptRuntime:.nameOrFunction;org/mozilla/javascript/IdScriptableObject:.get;org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/handler/codec/http/HttpObjectDecoder:.decode;io/netty/buffer/AbstractByteBuf:.forEachByteAsc0;io/netty/util/internal/AppendableCharSequence:.append 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/handler/codec/http/HttpObjectDecoder:.decode;io/netty/handler/codec/http/HttpHeaders:.isTransferEncodingChunked 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/handler/codec/http/HttpObjectDecoder:.decode;io/netty/handler/codec/http/HttpObjectDecoder:.findWhitespace 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/handler/codec/http/HttpObjectDecoder:.decode;io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/handler/codec/http/HttpObjectDecoder:.decode;io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders;io/netty/buffer/AbstractByteBuf:.forEachByteAsc0 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/handler/codec/http/HttpObjectDecoder:.decode;io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders;io/netty/handler/codec/http/HttpHeaders:.hash 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/handler/codec/http/HttpObjectDecoder:.decode;io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders;io/netty/handler/codec/http/HttpObjectDecoder:.splitHeader 5\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/handler/codec/http/HttpObjectDecoder:.decode;io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders;java/util/Arrays:.fill 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/AbstractReferenceCountedByteBuf:.release 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;io/netty/buffer/PooledByteBuf:.internalNioBuffer 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/NativeThread:.current 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;  3\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;Java_sun_nio_ch_FileDispatcherImpl_write0 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;sys_write 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;fget_light 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;__srcu_read_lock 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;__tcp_push_pending_frames 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;ktime_get_real 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;skb_clone 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_set_skb_tso_segs 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_hard_start_xmit 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_pick_tx 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;dev_hard_start_xmit;dev_queue_xmit_nit 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;dev_hard_start_xmit;loopback_xmit 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;netif_rx;netif_rx.part.82;xen_restore_fl_direct 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;netif_rx;netif_rx.part.82;xen_restore_fl_direct_end 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;dma_issue_pending_all 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;__inet_lookup_established 3\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_event_data_recv 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;sock_def_readable;__wake_up_sync_key;check_events;hypercall_page 19\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack 3\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_clean_rtx_queue 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_clean_rtx_queue;bictcp_acked 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_clean_rtx_queue;ktime_get_real;getnstimeofday 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_clean_rtx_queue;ktime_get_real;getnstimeofday;xen_clocksource_get_cycles;xen_clocksource_read 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_clean_rtx_queue;tcp_rtt_estimator 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_clean_rtx_queue;tcp_valid_rtt_meas;tcp_rtt_estimator 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver_finish 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;rcu_bh_qs 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;netif_skb_features 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_output 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ktime_get_real;getnstimeofday;xen_clocksource_get_cycles;pvclock_clocksource_read 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ktime_get_real;getnstimeofday;xen_clocksource_get_cycles;xen_clocksource_read;pvclock_clocksource_read 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ktime_get_real;xen_clocksource_get_cycles 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;skb_dst_set_noref 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;lock_sock_nested;_raw_spin_lock_bh;local_bh_disable 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb;__kmalloc_node_track_caller 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb;__kmalloc_node_track_caller;arch_local_irq_save 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb;__phys_addr 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb;get_slab 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb;kmem_cache_alloc_node 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;ksize 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;tcp_send_mss;tcp_current_mss;ipv4_mtu 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;tcp_send_mss;tcp_current_mss;tcp_established_options 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;tcp_send_mss;tcp_xmit_size_goal 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;tcp_xmit_size_goal 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;fsnotify 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;fsnotify;__srcu_read_lock 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;rw_verify_area 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;rw_verify_area;apparmor_file_permission 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;rw_verify_area;security_file_permission;apparmor_file_permission;common_file_perm 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;sock_aio_write 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/SocketChannelImpl:.writerCleanup 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.writerCleanup 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/util/Recycler:.recycle 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/ChannelDuplexHandler:.flush 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;sun/nio/ch/SocketChannelImpl:.read;java/nio/channels/spi/AbstractInterruptibleChannel:.end 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;sun/nio/ch/SocketChannelImpl:.read;sun/nio/ch/FileDispatcherImpl:.read0;read 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;sun/nio/ch/SocketChannelImpl:.read;sun/nio/ch/FileDispatcherImpl:.read0;read;sys_read 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;sun/nio/ch/SocketChannelImpl:.read;sun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;sun/nio/ch/SocketChannelImpl:.read;sun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;do_sync_read 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;sun/nio/ch/SocketChannelImpl:.read;sun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;__kfree_skb 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;sun/nio/ch/SocketChannelImpl:.read;sun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_rcv_space_adjust 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;sun/nio/ch/SocketChannelImpl:.read;sun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_recvmsg;__kfree_skb;skb_release_data 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;sun/nio/ch/SocketChannelImpl:.read;sun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_recvmsg;__kfree_skb;skb_release_head_state;dst_release 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;sun/nio/ch/SocketChannelImpl:.read;sun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_recvmsg;_raw_spin_lock_bh 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;sun/nio/ch/SocketChannelImpl:.read;sun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_recvmsg;skb_copy_datagram_iovec 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;sun/nio/ch/SocketChannelImpl:.read;sun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_recvmsg;skb_copy_datagram_iovec;copy_user_enhanced_fast_string 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;sun/nio/ch/SocketChannelImpl:.read;sun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_recvmsg;tcp_cleanup_rbuf 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;sun/nio/ch/SocketChannelImpl:.read;sun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_recvmsg;tcp_cleanup_rbuf;__tcp_select_window 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;sun/nio/ch/SocketChannelImpl:.read;sun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;vfs_read;rw_verify_area 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes 1\njava;start_thread;java_start;VMThread::run;VMThread::loop;VMThread::evaluate_operation;VM_Operation::evaluate;VM_ParallelGCFailedAllocation::doit;ParallelScavengeHeap::failed_mem_allocate;PSScavenge::invoke;PSScavenge::invoke_no_policy;PSIsAliveClosure::do_object_b 1\njava;start_thread;java_start;VMThread::run;VMThread::loop;VMThread::evaluate_operation;VM_Operation::evaluate;VM_ParallelGCFailedAllocation::doit;ParallelScavengeHeap::failed_mem_allocate;PSScavenge::invoke;PSScavenge::invoke_no_policy;StringTable::unlink_or_oops_do 2\njava;start_thread;java_start;VMThread::run;VMThread::loop;VMThread::evaluate_operation;VM_Operation::evaluate;VM_ParallelGCFailedAllocation::doit;ParallelScavengeHeap::failed_mem_allocate;PSScavenge::invoke;PSScavenge::invoke_no_policy;pthread_cond_signal@@GLIBC_2.3.2;system_call_fastpath;sys_futex;do_futex;futex_wake_op 1\njava;write;check_events;hypercall_page 3\n"
  },
  {
    "path": "test/results/perf-vertx-stacks-01-collapsed-all.txt",
    "content": "java;read;check_events_[k];hypercall_page_[k] 1\njava;start_thread;java_start;GCTaskThread::run;ScavengeRootsTask::do_it;ClassLoaderDataGraph::oops_do;ClassLoaderData::oops_do;PSScavengeKlassClosure::do_klass 1\njava;start_thread;java_start;GCTaskThread::run;StealTask::do_it;PSPromotionManager::drain_stacks_depth;oopDesc* PSPromotionManager::copy_to_survivor_space<false>;InstanceKlass::oop_push_contents 1\njava;start_thread;java_start;GCTaskThread::run;StealTask::do_it;ParallelTaskTerminator::offer_termination 5\njava;start_thread;java_start;GCTaskThread::run;StealTask::do_it;SpinPause 7\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/buffer/AbstractByteBufAllocator:.directBuffer_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/AbstractReferenceCountedByteBuf:.release_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];io/netty/buffer/PooledByteBuf:.internalNioBuffer_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/NativeThread:.current_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];  3\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];Java_sun_nio_ch_FileDispatcherImpl_write0 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;sys_write_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];fget_light_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];__srcu_read_lock_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];__tcp_push_pending_frames_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];ktime_get_real_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];skb_clone_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_set_skb_tso_segs_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_hard_start_xmit_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_pick_tx_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];dev_hard_start_xmit_[k];dev_queue_xmit_nit_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];dev_hard_start_xmit_[k];loopback_xmit_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];dev_hard_start_xmit_[k];loopback_xmit_[k];netif_rx_[k];netif_rx.part.82_[k];xen_restore_fl_direct_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];dev_hard_start_xmit_[k];loopback_xmit_[k];netif_rx_[k];netif_rx.part.82_[k];xen_restore_fl_direct_end_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];dma_issue_pending_all_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];__inet_lookup_established_[k] 3\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_event_data_recv_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];sock_def_readable_[k];__wake_up_sync_key_[k];check_events_[k];hypercall_page_[k] 19\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k] 3\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k];bictcp_acked_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k];ktime_get_real_[k];getnstimeofday_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k];ktime_get_real_[k];getnstimeofday_[k];xen_clocksource_get_cycles_[k];xen_clocksource_read_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k];tcp_rtt_estimator_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k];tcp_valid_rtt_meas_[k];tcp_rtt_estimator_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_finish_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];rcu_bh_qs_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];netif_skb_features_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_output_[k] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ktime_get_real_[k];getnstimeofday_[k];xen_clocksource_get_cycles_[k];pvclock_clocksource_read_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ktime_get_real_[k];getnstimeofday_[k];xen_clocksource_get_cycles_[k];xen_clocksource_read_[k];pvclock_clocksource_read_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ktime_get_real_[k];xen_clocksource_get_cycles_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];skb_dst_set_noref_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];lock_sock_nested_[k];_raw_spin_lock_bh_[k];local_bh_disable_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];__kmalloc_node_track_caller_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];__kmalloc_node_track_caller_[k];arch_local_irq_save_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];__phys_addr_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];get_slab_[k] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];kmem_cache_alloc_node_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];ksize_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_send_mss_[k];tcp_current_mss_[k];ipv4_mtu_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_send_mss_[k];tcp_current_mss_[k];tcp_established_options_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_send_mss_[k];tcp_xmit_size_goal_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_xmit_size_goal_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];fsnotify_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];fsnotify_[k];__srcu_read_lock_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];rw_verify_area_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];rw_verify_area_[k];apparmor_file_permission_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];rw_verify_area_[k];security_file_permission_[k];apparmor_file_permission_[k];common_file_perm_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];sock_aio_write_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/SocketChannelImpl:.writerCleanup_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.writerCleanup_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/util/Recycler:.recycle_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/buffer/AbstractReferenceCountedByteBuf:.release_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];java/util/concurrent/ConcurrentHashMap:.get_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/mozilla/javascript/Context:.getWrapFactory_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j] 3\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/ScriptableObject:.getParentScope_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/WrapFactory:.wrapAsJavaObject_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/WrapFactory:.wrapAsJavaObject_[j];java/util/HashMap:.get_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/WrapFactory:.wrap_[j];java/util/HashMap:.get_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getObjectProp_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getObjectProp_[j];org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getObjectProp_[j];vtable chunks_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.nameOrFunction_[j];org/mozilla/javascript/ScriptableObject$Slot:.getValue_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.name_[j];org/mozilla/javascript/IdScriptableObject:.get_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.has_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.has_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.setAttributes_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/MemberBox:.invoke_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/WrapFactory:.wrap_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.findFunction_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaObject:.get_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.get_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.setAttributes_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getObjectProp_[j];org/mozilla/javascript/ScriptableObject$Slot:.getValue_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis_[j];org/mozilla/javascript/NativeJavaObject:.get_[j];java/util/HashMap:.get_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];jint_disjoint_arraycopy_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.get_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.has_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.setAttributes_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.get_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.nameOrFunction_[j];org/mozilla/javascript/IdScriptableObject:.get_[j];org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 3\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];vtable chunks_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/NativeFunction:.initScriptFunction_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.get_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.has_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 6\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptableObject:.getParentScope_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.has_[j] 4\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.has_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 5\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 6\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptableObject:.getPrototype_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptableObject:.getParentScope_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/TopLevel:.getBuiltinPrototype_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/ScriptRuntime:.name_[j];org/mozilla/javascript/ScriptRuntime:.nameOrFunction_[j];vtable chunks_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.has_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.setAttributes_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/TopLevel:.getBuiltinPrototype_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/ScriptRuntime:.indexFromString_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/ScriptRuntime:.setObjectElem_[j];org/mozilla/javascript/ScriptRuntime:.indexFromString_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];io/netty/handler/codec/http/DefaultHttpHeaders:.set_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j] 3\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/buffer/AbstractByteBuf:.writeBytes_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/handler/codec/http/HttpObjectEncoder:.encode_[j];io/netty/buffer/AbstractByteBuf:.writeBytes_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/handler/codec/http/HttpObjectEncoder:.encode_[j];io/netty/buffer/AbstractByteBufAllocator:.directBuffer_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/handler/codec/http/HttpObjectEncoder:.encode_[j];io/netty/buffer/AbstractByteBufAllocator:.directBuffer_[j];io/netty/util/concurrent/FastThreadLocal:.get_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/handler/codec/http/HttpObjectEncoder:.encode_[j];java/util/ArrayList:.add_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/util/internal/RecyclableArrayList:.newInstance_[j];io/netty/util/concurrent/FastThreadLocal:.get_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];java/util/ArrayList:.ensureExplicitCapacity_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];vtable chunks_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/handler/codec/http/DefaultHttpHeaders:.add0_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/handler/codec/http/DefaultHttpHeaders:.set_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];sun/nio/cs/UTF_8$Encoder:.<init>_[j];jbyte_disjoint_arraycopy_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.name_[j];org/mozilla/javascript/ScriptRuntime:.nameOrFunction_[j];org/mozilla/javascript/IdScriptableObject:.get_[j];org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/buffer/AbstractByteBuf:.forEachByteAsc0_[j];io/netty/util/internal/AppendableCharSequence:.append_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpHeaders:.isTransferEncodingChunked_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.findWhitespace_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders_[j];io/netty/buffer/AbstractByteBuf:.forEachByteAsc0_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders_[j];io/netty/handler/codec/http/HttpHeaders:.hash_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders_[j];io/netty/handler/codec/http/HttpObjectDecoder:.splitHeader_[j] 5\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders_[j];java/util/Arrays:.fill_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];java/nio/channels/spi/AbstractInterruptibleChannel:.end_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;sys_read_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];do_sync_read_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];__kfree_skb_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_rcv_space_adjust_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];__kfree_skb_[k];skb_release_data_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];__kfree_skb_[k];skb_release_head_state_[k];dst_release_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];_raw_spin_lock_bh_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];skb_copy_datagram_iovec_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];skb_copy_datagram_iovec_[k];copy_user_enhanced_fast_string_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_cleanup_rbuf_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_cleanup_rbuf_[k];__tcp_select_window_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];rw_verify_area_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j] 1\njava;start_thread;java_start;VMThread::run;VMThread::loop;VMThread::evaluate_operation;VM_Operation::evaluate;VM_ParallelGCFailedAllocation::doit;ParallelScavengeHeap::failed_mem_allocate;PSScavenge::invoke;PSScavenge::invoke_no_policy;PSIsAliveClosure::do_object_b 1\njava;start_thread;java_start;VMThread::run;VMThread::loop;VMThread::evaluate_operation;VM_Operation::evaluate;VM_ParallelGCFailedAllocation::doit;ParallelScavengeHeap::failed_mem_allocate;PSScavenge::invoke;PSScavenge::invoke_no_policy;StringTable::unlink_or_oops_do 2\njava;start_thread;java_start;VMThread::run;VMThread::loop;VMThread::evaluate_operation;VM_Operation::evaluate;VM_ParallelGCFailedAllocation::doit;ParallelScavengeHeap::failed_mem_allocate;PSScavenge::invoke;PSScavenge::invoke_no_policy;pthread_cond_signal@@GLIBC_2.3.2;system_call_fastpath_[k];sys_futex_[k];do_futex_[k];futex_wake_op_[k] 1\njava;write;check_events_[k];hypercall_page_[k] 3\n"
  },
  {
    "path": "test/results/perf-vertx-stacks-01-collapsed-jit.txt",
    "content": "java;read;check_events;hypercall_page 1\njava;start_thread;java_start;GCTaskThread::run;ScavengeRootsTask::do_it;ClassLoaderDataGraph::oops_do;ClassLoaderData::oops_do;PSScavengeKlassClosure::do_klass 1\njava;start_thread;java_start;GCTaskThread::run;StealTask::do_it;PSPromotionManager::drain_stacks_depth;oopDesc* PSPromotionManager::copy_to_survivor_space<false>;InstanceKlass::oop_push_contents 1\njava;start_thread;java_start;GCTaskThread::run;StealTask::do_it;ParallelTaskTerminator::offer_termination 5\njava;start_thread;java_start;GCTaskThread::run;StealTask::do_it;SpinPause 7\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/buffer/AbstractByteBufAllocator:.directBuffer_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/AbstractReferenceCountedByteBuf:.release_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];io/netty/buffer/PooledByteBuf:.internalNioBuffer_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/NativeThread:.current_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];  3\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];Java_sun_nio_ch_FileDispatcherImpl_write0 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;sys_write 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;fget_light 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;__srcu_read_lock 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;__tcp_push_pending_frames 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;ktime_get_real 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;skb_clone 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_set_skb_tso_segs 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_hard_start_xmit 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_pick_tx 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;dev_hard_start_xmit;dev_queue_xmit_nit 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;dev_hard_start_xmit;loopback_xmit 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;netif_rx;netif_rx.part.82;xen_restore_fl_direct 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;netif_rx;netif_rx.part.82;xen_restore_fl_direct_end 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;dma_issue_pending_all 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;__inet_lookup_established 3\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_event_data_recv 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;sock_def_readable;__wake_up_sync_key;check_events;hypercall_page 19\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack 3\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_clean_rtx_queue 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_clean_rtx_queue;bictcp_acked 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_clean_rtx_queue;ktime_get_real;getnstimeofday 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_clean_rtx_queue;ktime_get_real;getnstimeofday;xen_clocksource_get_cycles;xen_clocksource_read 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_clean_rtx_queue;tcp_rtt_estimator 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_clean_rtx_queue;tcp_valid_rtt_meas;tcp_rtt_estimator 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver_finish 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;rcu_bh_qs 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;netif_skb_features 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_output 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ktime_get_real;getnstimeofday;xen_clocksource_get_cycles;pvclock_clocksource_read 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ktime_get_real;getnstimeofday;xen_clocksource_get_cycles;xen_clocksource_read;pvclock_clocksource_read 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ktime_get_real;xen_clocksource_get_cycles 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;skb_dst_set_noref 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;lock_sock_nested;_raw_spin_lock_bh;local_bh_disable 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb;__kmalloc_node_track_caller 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb;__kmalloc_node_track_caller;arch_local_irq_save 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb;__phys_addr 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb;get_slab 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb;kmem_cache_alloc_node 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;ksize 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;tcp_send_mss;tcp_current_mss;ipv4_mtu 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;tcp_send_mss;tcp_current_mss;tcp_established_options 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;tcp_send_mss;tcp_xmit_size_goal 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;tcp_xmit_size_goal 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;fsnotify 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;fsnotify;__srcu_read_lock 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;rw_verify_area 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;rw_verify_area;apparmor_file_permission 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;rw_verify_area;security_file_permission;apparmor_file_permission;common_file_perm 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/FileDispatcherImpl:.write0_[j];write;system_call_fastpath;sys_write;vfs_write;sock_aio_write 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.write_[j];sun/nio/ch/SocketChannelImpl:.writerCleanup_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes_[j];sun/nio/ch/SocketChannelImpl:.writerCleanup_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/ChannelOutboundHandlerAdapter:.flush_[j];io/netty/channel/AbstractChannelHandlerContext:.flush_[j];io/netty/channel/DefaultChannelPipeline$HeadContext:.flush_[j];io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0_[j];io/netty/channel/nio/AbstractNioByteChannel:.doWrite_[j];io/netty/util/Recycler:.recycle_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j];io/netty/channel/ChannelDuplexHandler:.flush_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j];org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/buffer/AbstractReferenceCountedByteBuf:.release_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];java/util/concurrent/ConcurrentHashMap:.get_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/mozilla/javascript/Context:.getWrapFactory_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j] 3\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/ScriptableObject:.getParentScope_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/WrapFactory:.wrapAsJavaObject_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/WrapFactory:.wrapAsJavaObject_[j];java/util/HashMap:.get_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/WrapFactory:.wrap_[j];java/util/HashMap:.get_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getObjectProp_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getObjectProp_[j];org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getObjectProp_[j];vtable chunks_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.nameOrFunction_[j];org/mozilla/javascript/ScriptableObject$Slot:.getValue_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.name_[j];org/mozilla/javascript/IdScriptableObject:.get_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.has_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.has_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.setAttributes_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/MemberBox:.invoke_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/WrapFactory:.wrap_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.findFunction_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaObject:.get_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.get_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.setAttributes_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getObjectProp_[j];org/mozilla/javascript/ScriptableObject$Slot:.getValue_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis_[j];org/mozilla/javascript/NativeJavaObject:.get_[j];java/util/HashMap:.get_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];jint_disjoint_arraycopy_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.get_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/IdScriptableObject:.has_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.setAttributes_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.getObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.get_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.nameOrFunction_[j];org/mozilla/javascript/IdScriptableObject:.get_[j];org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 3\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];vtable chunks_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/NativeFunction:.initScriptFunction_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.get_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.has_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 6\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.newObject_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptableObject:.getParentScope_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.has_[j] 4\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.has_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 5\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 6\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptableObject:.getPrototype_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptableObject:.getParentScope_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/TopLevel:.getBuiltinPrototype_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/ScriptRuntime:.name_[j];org/mozilla/javascript/ScriptRuntime:.nameOrFunction_[j];vtable chunks_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.has_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/IdScriptableObject:.setAttributes_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.createFunctionActivation_[j];org/mozilla/javascript/TopLevel:.getBuiltinPrototype_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/optimizer/OptRuntime:.call2_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.setObjectProp_[j];org/mozilla/javascript/IdScriptableObject:.put_[j];org/mozilla/javascript/ScriptableObject:.getSlot_[j];org/mozilla/javascript/ScriptableObject:.createSlot_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/ScriptRuntime:.indexFromString_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/ScriptRuntime:.setObjectElem_[j];org/mozilla/javascript/ScriptRuntime:.indexFromString_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];io/netty/handler/codec/http/DefaultHttpHeaders:.set_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j] 3\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/buffer/AbstractByteBuf:.writeBytes_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/handler/codec/http/HttpObjectEncoder:.encode_[j];io/netty/buffer/AbstractByteBuf:.writeBytes_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/handler/codec/http/HttpObjectEncoder:.encode_[j];io/netty/buffer/AbstractByteBufAllocator:.directBuffer_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/handler/codec/http/HttpObjectEncoder:.encode_[j];io/netty/buffer/AbstractByteBufAllocator:.directBuffer_[j];io/netty/util/concurrent/FastThreadLocal:.get_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/handler/codec/http/HttpObjectEncoder:.encode_[j];java/util/ArrayList:.add_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];io/netty/util/internal/RecyclableArrayList:.newInstance_[j];io/netty/util/concurrent/FastThreadLocal:.get_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];java/util/ArrayList:.ensureExplicitCapacity_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];io/netty/handler/codec/MessageToMessageEncoder:.write_[j];vtable chunks_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/channel/AbstractChannelHandlerContext:.write_[j];org/vertx/java/core/http/impl/VertxHttpHandler:.write_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/handler/codec/http/DefaultHttpHeaders:.add0_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];io/netty/handler/codec/http/DefaultHttpHeaders:.set_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/NativeJavaMethod:.call_[j];org/mozilla/javascript/MemberBox:.invoke_[j];sun/reflect/DelegatingMethodAccessorImpl:.invoke_[j];sun/nio/cs/UTF_8$Encoder:.<init>_[j];jbyte_disjoint_arraycopy_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];org/vertx/java/core/net/impl/VertxHandler:.channelRead_[j];org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call_[j];org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0_[j];org/mozilla/javascript/ScriptRuntime:.name_[j];org/mozilla/javascript/ScriptRuntime:.nameOrFunction_[j];org/mozilla/javascript/IdScriptableObject:.get_[j];org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/buffer/AbstractByteBuf:.forEachByteAsc0_[j];io/netty/util/internal/AppendableCharSequence:.append_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpHeaders:.isTransferEncodingChunked_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.findWhitespace_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders_[j];io/netty/buffer/AbstractByteBuf:.forEachByteAsc0_[j] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders_[j];io/netty/handler/codec/http/HttpHeaders:.hash_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders_[j];io/netty/handler/codec/http/HttpObjectDecoder:.splitHeader_[j] 5\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelRead_[j];io/netty/handler/codec/http/HttpObjectDecoder:.decode_[j];io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders_[j];java/util/Arrays:.fill_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];java/nio/channels/spi/AbstractInterruptibleChannel:.end_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;sys_read 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath;sys_read 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath;sys_read;do_sync_read 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;__kfree_skb 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_rcv_space_adjust 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_recvmsg;__kfree_skb;skb_release_data 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_recvmsg;__kfree_skb;skb_release_head_state;dst_release 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_recvmsg;_raw_spin_lock_bh 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_recvmsg;skb_copy_datagram_iovec 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_recvmsg;skb_copy_datagram_iovec;copy_user_enhanced_fast_string 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_recvmsg;tcp_cleanup_rbuf 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_recvmsg;tcp_cleanup_rbuf;__tcp_select_window 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j];sun/nio/ch/SocketChannelImpl:.read_[j];sun/nio/ch/FileDispatcherImpl:.read0_[j];read;system_call_fastpath;sys_read;vfs_read;rw_verify_area 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read_[j];io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete_[j] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub_[j];Interpreter_[j];Interpreter_[j];io/netty/channel/nio/NioEventLoop:.run_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeys_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized_[j];io/netty/channel/nio/NioEventLoop:.processSelectedKey_[j];io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes_[j] 1\njava;start_thread;java_start;VMThread::run;VMThread::loop;VMThread::evaluate_operation;VM_Operation::evaluate;VM_ParallelGCFailedAllocation::doit;ParallelScavengeHeap::failed_mem_allocate;PSScavenge::invoke;PSScavenge::invoke_no_policy;PSIsAliveClosure::do_object_b 1\njava;start_thread;java_start;VMThread::run;VMThread::loop;VMThread::evaluate_operation;VM_Operation::evaluate;VM_ParallelGCFailedAllocation::doit;ParallelScavengeHeap::failed_mem_allocate;PSScavenge::invoke;PSScavenge::invoke_no_policy;StringTable::unlink_or_oops_do 2\njava;start_thread;java_start;VMThread::run;VMThread::loop;VMThread::evaluate_operation;VM_Operation::evaluate;VM_ParallelGCFailedAllocation::doit;ParallelScavengeHeap::failed_mem_allocate;PSScavenge::invoke;PSScavenge::invoke_no_policy;pthread_cond_signal@@GLIBC_2.3.2;system_call_fastpath;sys_futex;do_futex;futex_wake_op 1\njava;write;check_events;hypercall_page 3\n"
  },
  {
    "path": "test/results/perf-vertx-stacks-01-collapsed-kernel.txt",
    "content": "java;read;check_events_[k];hypercall_page_[k] 1\njava;start_thread;java_start;GCTaskThread::run;ScavengeRootsTask::do_it;ClassLoaderDataGraph::oops_do;ClassLoaderData::oops_do;PSScavengeKlassClosure::do_klass 1\njava;start_thread;java_start;GCTaskThread::run;StealTask::do_it;PSPromotionManager::drain_stacks_depth;oopDesc* PSPromotionManager::copy_to_survivor_space<false>;InstanceKlass::oop_push_contents 1\njava;start_thread;java_start;GCTaskThread::run;StealTask::do_it;ParallelTaskTerminator::offer_termination 5\njava;start_thread;java_start;GCTaskThread::run;StealTask::do_it;SpinPause 7\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/buffer/AbstractByteBufAllocator:.directBuffer 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/buffer/AbstractReferenceCountedByteBuf:.release 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;java/util/concurrent/ConcurrentHashMap:.get 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/mozilla/javascript/Context:.getWrapFactory 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived 3\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/ScriptableObject:.getParentScope 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/WrapFactory:.wrap;java/util/HashMap:.get 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/WrapFactory:.wrapAsJavaObject 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/WrapFactory:.wrapAsJavaObject;java/util/HashMap:.get 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.getObjectProp 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.getObjectProp;org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.getObjectProp;vtable chunks 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.name;org/mozilla/javascript/IdScriptableObject:.get 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.nameOrFunction;org/mozilla/javascript/ScriptableObject$Slot:.getValue 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/IdScriptableObject:.has 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/IdScriptableObject:.has;org/mozilla/javascript/ScriptableObject:.getSlot 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/IdScriptableObject:.put;org/mozilla/javascript/ScriptableObject:.getSlot 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/IdScriptableObject:.setAttributes 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/MemberBox:.invoke 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/WrapFactory:.wrap 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.findFunction 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaObject:.get 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.createFunctionActivation;org/mozilla/javascript/IdScriptableObject:.get;org/mozilla/javascript/ScriptableObject:.getSlot 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.createFunctionActivation;org/mozilla/javascript/IdScriptableObject:.put;org/mozilla/javascript/ScriptableObject:.getSlot;org/mozilla/javascript/ScriptableObject:.createSlot 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.createFunctionActivation;org/mozilla/javascript/IdScriptableObject:.setAttributes 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.createFunctionActivation;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.getObjectProp;org/mozilla/javascript/ScriptableObject$Slot:.getValue 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis;org/mozilla/javascript/NativeJavaObject:.get;java/util/HashMap:.get 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;jint_disjoint_arraycopy 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/IdScriptableObject:.get 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/IdScriptableObject:.has 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.createFunctionActivation 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.createFunctionActivation;org/mozilla/javascript/IdScriptableObject:.put;org/mozilla/javascript/ScriptableObject:.getSlot;org/mozilla/javascript/ScriptableObject:.createSlot 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.createFunctionActivation;org/mozilla/javascript/IdScriptableObject:.setAttributes 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.getObjectProp;org/mozilla/javascript/IdScriptableObject:.get;org/mozilla/javascript/ScriptableObject:.getSlot 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.nameOrFunction;org/mozilla/javascript/IdScriptableObject:.get;org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.put 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.put;org/mozilla/javascript/ScriptableObject:.getSlot;org/mozilla/javascript/ScriptableObject:.createSlot 3\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/ScriptableObject:.getSlot 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.setObjectProp;vtable chunks 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/NativeFunction:.initScriptFunction 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/ScriptRuntime:.createFunctionActivation 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.createFunctionActivation 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.createFunctionActivation;org/mozilla/javascript/IdScriptableObject:.get 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.has 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.put 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.put;org/mozilla/javascript/ScriptableObject:.getSlot;org/mozilla/javascript/ScriptableObject:.createSlot 6\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.newObject;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptableObject:.getParentScope 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.has 4\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.has;org/mozilla/javascript/ScriptableObject:.getSlot 5\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.put 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.put;org/mozilla/javascript/ScriptableObject:.getSlot 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.put;org/mozilla/javascript/ScriptableObject:.getSlot;org/mozilla/javascript/ScriptableObject:.createSlot 6\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptableObject:.getPrototype 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptableObject:.getParentScope 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/TopLevel:.getBuiltinPrototype 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/optimizer/OptRuntime:.call2 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/ScriptRuntime:.name;org/mozilla/javascript/ScriptRuntime:.nameOrFunction;vtable chunks 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.has;org/mozilla/javascript/ScriptableObject:.getSlot 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.createFunctionActivation 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.createFunctionActivation;org/mozilla/javascript/IdScriptableObject:.setAttributes 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.createFunctionActivation;org/mozilla/javascript/TopLevel:.getBuiltinPrototype 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/optimizer/OptRuntime:.call2;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.setObjectProp;org/mozilla/javascript/IdScriptableObject:.put;org/mozilla/javascript/ScriptableObject:.getSlot;org/mozilla/javascript/ScriptableObject:.createSlot 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/ScriptRuntime:.indexFromString 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/ScriptRuntime:.setObjectElem;org/mozilla/javascript/ScriptRuntime:.indexFromString 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;io/netty/handler/codec/http/DefaultHttpHeaders:.set 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke 3\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/channel/AbstractChannelHandlerContext:.write 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/channel/AbstractChannelHandlerContext:.write;org/vertx/java/core/http/impl/VertxHttpHandler:.write 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/channel/AbstractChannelHandlerContext:.write;org/vertx/java/core/http/impl/VertxHttpHandler:.write;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/handler/codec/MessageToMessageEncoder:.write 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/channel/AbstractChannelHandlerContext:.write;org/vertx/java/core/http/impl/VertxHttpHandler:.write;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/handler/codec/MessageToMessageEncoder:.write;io/netty/buffer/AbstractByteBuf:.writeBytes 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/channel/AbstractChannelHandlerContext:.write;org/vertx/java/core/http/impl/VertxHttpHandler:.write;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/handler/codec/MessageToMessageEncoder:.write;io/netty/handler/codec/http/HttpObjectEncoder:.encode;io/netty/buffer/AbstractByteBuf:.writeBytes 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/channel/AbstractChannelHandlerContext:.write;org/vertx/java/core/http/impl/VertxHttpHandler:.write;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/handler/codec/MessageToMessageEncoder:.write;io/netty/handler/codec/http/HttpObjectEncoder:.encode;io/netty/buffer/AbstractByteBufAllocator:.directBuffer 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/channel/AbstractChannelHandlerContext:.write;org/vertx/java/core/http/impl/VertxHttpHandler:.write;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/handler/codec/MessageToMessageEncoder:.write;io/netty/handler/codec/http/HttpObjectEncoder:.encode;io/netty/buffer/AbstractByteBufAllocator:.directBuffer;io/netty/util/concurrent/FastThreadLocal:.get 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/channel/AbstractChannelHandlerContext:.write;org/vertx/java/core/http/impl/VertxHttpHandler:.write;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/handler/codec/MessageToMessageEncoder:.write;io/netty/handler/codec/http/HttpObjectEncoder:.encode;java/util/ArrayList:.add 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/channel/AbstractChannelHandlerContext:.write;org/vertx/java/core/http/impl/VertxHttpHandler:.write;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/handler/codec/MessageToMessageEncoder:.write;io/netty/util/internal/RecyclableArrayList:.newInstance;io/netty/util/concurrent/FastThreadLocal:.get 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/channel/AbstractChannelHandlerContext:.write;org/vertx/java/core/http/impl/VertxHttpHandler:.write;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/handler/codec/MessageToMessageEncoder:.write;java/util/ArrayList:.ensureExplicitCapacity 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/channel/AbstractChannelHandlerContext:.write;org/vertx/java/core/http/impl/VertxHttpHandler:.write;io/netty/channel/AbstractChannelHandlerContext:.write;io/netty/handler/codec/MessageToMessageEncoder:.write;vtable chunks 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke;io/netty/channel/AbstractChannelHandlerContext:.write;org/vertx/java/core/http/impl/VertxHttpHandler:.write 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke;io/netty/handler/codec/http/DefaultHttpHeaders:.add0 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke;io/netty/handler/codec/http/DefaultHttpHeaders:.set 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/NativeJavaMethod:.call;org/mozilla/javascript/MemberBox:.invoke;sun/reflect/DelegatingMethodAccessorImpl:.invoke;sun/nio/cs/UTF_8$Encoder:.<init>;jbyte_disjoint_arraycopy 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;org/vertx/java/core/net/impl/VertxHandler:.channelRead;org/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;org/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;org/mozilla/javascript/ScriptRuntime:.name;org/mozilla/javascript/ScriptRuntime:.nameOrFunction;org/mozilla/javascript/IdScriptableObject:.get;org/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/handler/codec/http/HttpObjectDecoder:.decode;io/netty/buffer/AbstractByteBuf:.forEachByteAsc0;io/netty/util/internal/AppendableCharSequence:.append 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/handler/codec/http/HttpObjectDecoder:.decode;io/netty/handler/codec/http/HttpHeaders:.isTransferEncodingChunked 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/handler/codec/http/HttpObjectDecoder:.decode;io/netty/handler/codec/http/HttpObjectDecoder:.findWhitespace 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/handler/codec/http/HttpObjectDecoder:.decode;io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/handler/codec/http/HttpObjectDecoder:.decode;io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders;io/netty/buffer/AbstractByteBuf:.forEachByteAsc0 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/handler/codec/http/HttpObjectDecoder:.decode;io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders;io/netty/handler/codec/http/HttpHeaders:.hash 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/handler/codec/http/HttpObjectDecoder:.decode;io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders;io/netty/handler/codec/http/HttpObjectDecoder:.splitHeader 5\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;io/netty/handler/codec/ByteToMessageDecoder:.channelRead;io/netty/handler/codec/http/HttpObjectDecoder:.decode;io/netty/handler/codec/http/HttpObjectDecoder:.readHeaders;java/util/Arrays:.fill 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/AbstractReferenceCountedByteBuf:.release 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;io/netty/buffer/PooledByteBuf:.internalNioBuffer 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/NativeThread:.current 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;  3\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;Java_sun_nio_ch_FileDispatcherImpl_write0 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;sys_write_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];fget_light_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];__srcu_read_lock_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];__tcp_push_pending_frames_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];ktime_get_real_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];skb_clone_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_set_skb_tso_segs_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_hard_start_xmit_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_pick_tx_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];dev_hard_start_xmit_[k];dev_queue_xmit_nit_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];dev_hard_start_xmit_[k];loopback_xmit_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];dev_hard_start_xmit_[k];loopback_xmit_[k];netif_rx_[k];netif_rx.part.82_[k];xen_restore_fl_direct_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];dev_hard_start_xmit_[k];loopback_xmit_[k];netif_rx_[k];netif_rx.part.82_[k];xen_restore_fl_direct_end_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];dma_issue_pending_all_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];__inet_lookup_established_[k] 3\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_event_data_recv_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];sock_def_readable_[k];__wake_up_sync_key_[k];check_events_[k];hypercall_page_[k] 19\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k] 3\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k];bictcp_acked_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k];ktime_get_real_[k];getnstimeofday_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k];ktime_get_real_[k];getnstimeofday_[k];xen_clocksource_get_cycles_[k];xen_clocksource_read_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k];tcp_rtt_estimator_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_[k];ip_local_deliver_finish_[k];tcp_v4_rcv_[k];tcp_v4_do_rcv_[k];tcp_rcv_established_[k];tcp_ack_[k];tcp_clean_rtx_queue_[k];tcp_valid_rtt_meas_[k];tcp_rtt_estimator_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];__do_softirq_[k];net_rx_action_[k];process_backlog_[k];__netif_receive_skb_[k];ip_rcv_[k];ip_rcv_finish_[k];ip_local_deliver_finish_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];local_bh_enable_[k];do_softirq_[k];call_softirq_[k];rcu_bh_qs_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_local_out_[k];ip_output_[k];ip_finish_output_[k];dev_queue_xmit_[k];netif_skb_features_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ip_queue_xmit_[k];ip_output_[k] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ktime_get_real_[k];getnstimeofday_[k];xen_clocksource_get_cycles_[k];pvclock_clocksource_read_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ktime_get_real_[k];getnstimeofday_[k];xen_clocksource_get_cycles_[k];xen_clocksource_read_[k];pvclock_clocksource_read_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];ktime_get_real_[k];xen_clocksource_get_cycles_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];__tcp_push_pending_frames_[k];tcp_write_xmit_[k];tcp_transmit_skb_[k];skb_dst_set_noref_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];lock_sock_nested_[k];_raw_spin_lock_bh_[k];local_bh_disable_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];__kmalloc_node_track_caller_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];__kmalloc_node_track_caller_[k];arch_local_irq_save_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];__phys_addr_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];get_slab_[k] 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];__alloc_skb_[k];kmem_cache_alloc_node_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];sk_stream_alloc_skb_[k];ksize_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_send_mss_[k];tcp_current_mss_[k];ipv4_mtu_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_send_mss_[k];tcp_current_mss_[k];tcp_established_options_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_send_mss_[k];tcp_xmit_size_goal_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];do_sync_write_[k];sock_aio_write_[k];do_sock_write.isra.10_[k];inet_sendmsg_[k];tcp_sendmsg_[k];tcp_xmit_size_goal_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];fsnotify_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];fsnotify_[k];__srcu_read_lock_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];rw_verify_area_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];rw_verify_area_[k];apparmor_file_permission_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];rw_verify_area_[k];security_file_permission_[k];apparmor_file_permission_[k];common_file_perm_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath_[k];sys_write_[k];vfs_write_[k];sock_aio_write_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.write;sun/nio/ch/SocketChannelImpl:.writerCleanup 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;sun/nio/ch/SocketChannelImpl:.writerCleanup 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelDuplexHandler:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/ChannelOutboundHandlerAdapter:.flush;io/netty/channel/AbstractChannelHandlerContext:.flush;io/netty/channel/DefaultChannelPipeline$HeadContext:.flush;io/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;io/netty/channel/nio/AbstractNioByteChannel:.doWrite;io/netty/util/Recycler:.recycle 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;io/netty/channel/ChannelDuplexHandler:.flush 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;org/vertx/java/core/net/impl/VertxHandler:.channelReadComplete 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;sun/nio/ch/SocketChannelImpl:.read;java/nio/channels/spi/AbstractInterruptibleChannel:.end 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;sun/nio/ch/SocketChannelImpl:.read;sun/nio/ch/FileDispatcherImpl:.read0;read 2\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;sun/nio/ch/SocketChannelImpl:.read;sun/nio/ch/FileDispatcherImpl:.read0;read;sys_read_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;sun/nio/ch/SocketChannelImpl:.read;sun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath_[k];sys_read_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;sun/nio/ch/SocketChannelImpl:.read;sun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath_[k];sys_read_[k];do_sync_read_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;sun/nio/ch/SocketChannelImpl:.read;sun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];__kfree_skb_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;sun/nio/ch/SocketChannelImpl:.read;sun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_rcv_space_adjust_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;sun/nio/ch/SocketChannelImpl:.read;sun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];__kfree_skb_[k];skb_release_data_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;sun/nio/ch/SocketChannelImpl:.read;sun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];__kfree_skb_[k];skb_release_head_state_[k];dst_release_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;sun/nio/ch/SocketChannelImpl:.read;sun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];_raw_spin_lock_bh_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;sun/nio/ch/SocketChannelImpl:.read;sun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];skb_copy_datagram_iovec_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;sun/nio/ch/SocketChannelImpl:.read;sun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];skb_copy_datagram_iovec_[k];copy_user_enhanced_fast_string_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;sun/nio/ch/SocketChannelImpl:.read;sun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_cleanup_rbuf_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;sun/nio/ch/SocketChannelImpl:.read;sun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];do_sync_read_[k];sock_aio_read_[k];sock_aio_read.part.13_[k];do_sock_read.isra.12_[k];inet_recvmsg_[k];tcp_recvmsg_[k];tcp_cleanup_rbuf_[k];__tcp_select_window_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;sun/nio/ch/SocketChannelImpl:.read;sun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath_[k];sys_read_[k];vfs_read_[k];rw_verify_area_[k] 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;io/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete 1\njava;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;io/netty/channel/nio/NioEventLoop:.run;io/netty/channel/nio/NioEventLoop:.processSelectedKeys;io/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;io/netty/channel/nio/NioEventLoop:.processSelectedKey;io/netty/channel/socket/nio/NioSocketChannel:.doReadBytes 1\njava;start_thread;java_start;VMThread::run;VMThread::loop;VMThread::evaluate_operation;VM_Operation::evaluate;VM_ParallelGCFailedAllocation::doit;ParallelScavengeHeap::failed_mem_allocate;PSScavenge::invoke;PSScavenge::invoke_no_policy;PSIsAliveClosure::do_object_b 1\njava;start_thread;java_start;VMThread::run;VMThread::loop;VMThread::evaluate_operation;VM_Operation::evaluate;VM_ParallelGCFailedAllocation::doit;ParallelScavengeHeap::failed_mem_allocate;PSScavenge::invoke;PSScavenge::invoke_no_policy;StringTable::unlink_or_oops_do 2\njava;start_thread;java_start;VMThread::run;VMThread::loop;VMThread::evaluate_operation;VM_Operation::evaluate;VM_ParallelGCFailedAllocation::doit;ParallelScavengeHeap::failed_mem_allocate;PSScavenge::invoke;PSScavenge::invoke_no_policy;pthread_cond_signal@@GLIBC_2.3.2;system_call_fastpath_[k];sys_futex_[k];do_futex_[k];futex_wake_op_[k] 1\njava;write;check_events_[k];hypercall_page_[k] 3\n"
  },
  {
    "path": "test/results/perf-vertx-stacks-01-collapsed-pid.txt",
    "content": "java-?;read;check_events;hypercall_page 1\njava-?;start_thread;java_start;GCTaskThread::run;ScavengeRootsTask::do_it;ClassLoaderDataGraph::oops_do;ClassLoaderData::oops_do;PSScavengeKlassClosure::do_klass 1\njava-?;start_thread;java_start;GCTaskThread::run;StealTask::do_it;PSPromotionManager::drain_stacks_depth;oopDesc* PSPromotionManager::copy_to_survivor_space<false>;InstanceKlass::oop_push_contents 1\njava-?;start_thread;java_start;GCTaskThread::run;StealTask::do_it;ParallelTaskTerminator::offer_termination 5\njava-?;start_thread;java_start;GCTaskThread::run;StealTask::do_it;SpinPause 7\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/buffer/AbstractByteBufAllocator:.directBuffer 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/buffer/AbstractReferenceCountedByteBuf:.release 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Ljava/util/concurrent/ConcurrentHashMap:.get 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/mozilla/javascript/Context:.getWrapFactory 2\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived 3\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/ScriptableObject:.getParentScope 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/WrapFactory:.wrap;Ljava/util/HashMap:.get 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/WrapFactory:.wrapAsJavaObject 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/WrapFactory:.wrapAsJavaObject;Ljava/util/HashMap:.get 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.getObjectProp 2\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.getObjectProp;Lorg/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.getObjectProp;vtable chunks 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.name;Lorg/mozilla/javascript/IdScriptableObject:.get 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.nameOrFunction;Lorg/mozilla/javascript/ScriptableObject$Slot:.getValue 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/IdScriptableObject:.has 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/IdScriptableObject:.has;Lorg/mozilla/javascript/ScriptableObject:.getSlot 2\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/IdScriptableObject:.put;Lorg/mozilla/javascript/ScriptableObject:.getSlot 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/IdScriptableObject:.setAttributes 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/MemberBox:.invoke 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/WrapFactory:.wrap 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.findFunction 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaObject:.get 2\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.createFunctionActivation;Lorg/mozilla/javascript/IdScriptableObject:.get;Lorg/mozilla/javascript/ScriptableObject:.getSlot 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.createFunctionActivation;Lorg/mozilla/javascript/IdScriptableObject:.put;Lorg/mozilla/javascript/ScriptableObject:.getSlot;Lorg/mozilla/javascript/ScriptableObject:.createSlot 2\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.createFunctionActivation;Lorg/mozilla/javascript/IdScriptableObject:.setAttributes 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.createFunctionActivation;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.getObjectProp;Lorg/mozilla/javascript/ScriptableObject$Slot:.getValue 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis;Lorg/mozilla/javascript/NativeJavaObject:.get;Ljava/util/HashMap:.get 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/IdScriptableObject:.get 2\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/IdScriptableObject:.has 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.createFunctionActivation 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.createFunctionActivation;Lorg/mozilla/javascript/IdScriptableObject:.put;Lorg/mozilla/javascript/ScriptableObject:.getSlot;Lorg/mozilla/javascript/ScriptableObject:.createSlot 2\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.createFunctionActivation;Lorg/mozilla/javascript/IdScriptableObject:.setAttributes 2\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.getObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.get;Lorg/mozilla/javascript/ScriptableObject:.getSlot 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.nameOrFunction;Lorg/mozilla/javascript/IdScriptableObject:.get;Lorg/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.put 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.put;Lorg/mozilla/javascript/ScriptableObject:.getSlot;Lorg/mozilla/javascript/ScriptableObject:.createSlot 3\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/ScriptableObject:.getSlot 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;vtable chunks 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/NativeFunction:.initScriptFunction 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/ScriptRuntime:.createFunctionActivation 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.createFunctionActivation 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.createFunctionActivation;Lorg/mozilla/javascript/IdScriptableObject:.get 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.has 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.put 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.put;Lorg/mozilla/javascript/ScriptableObject:.getSlot;Lorg/mozilla/javascript/ScriptableObject:.createSlot 6\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptableObject:.getParentScope 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;jint_disjoint_arraycopy 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.has 4\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.has;Lorg/mozilla/javascript/ScriptableObject:.getSlot 5\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.put 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.put;Lorg/mozilla/javascript/ScriptableObject:.getSlot 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.put;Lorg/mozilla/javascript/ScriptableObject:.getSlot;Lorg/mozilla/javascript/ScriptableObject:.createSlot 6\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptableObject:.getPrototype 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptableObject:.getParentScope 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/TopLevel:.getBuiltinPrototype 2\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/ScriptRuntime:.name;Lorg/mozilla/javascript/ScriptRuntime:.nameOrFunction;vtable chunks 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.has;Lorg/mozilla/javascript/ScriptableObject:.getSlot 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.createFunctionActivation 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.createFunctionActivation;Lorg/mozilla/javascript/IdScriptableObject:.setAttributes 2\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.createFunctionActivation;Lorg/mozilla/javascript/TopLevel:.getBuiltinPrototype 2\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.put;Lorg/mozilla/javascript/ScriptableObject:.getSlot;Lorg/mozilla/javascript/ScriptableObject:.createSlot 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/ScriptRuntime:.indexFromString 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/ScriptRuntime:.setObjectElem;Lorg/mozilla/javascript/ScriptRuntime:.indexFromString 2\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 2\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lio/netty/handler/codec/http/DefaultHttpHeaders:.set 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke 3\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.write 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/handler/codec/MessageToMessageEncoder:.write 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/handler/codec/MessageToMessageEncoder:.write;Lio/netty/buffer/AbstractByteBuf:.writeBytes 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/handler/codec/MessageToMessageEncoder:.write;Lio/netty/handler/codec/http/HttpObjectEncoder:.encode;Lio/netty/buffer/AbstractByteBuf:.writeBytes 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/handler/codec/MessageToMessageEncoder:.write;Lio/netty/handler/codec/http/HttpObjectEncoder:.encode;Lio/netty/buffer/AbstractByteBufAllocator:.directBuffer 2\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/handler/codec/MessageToMessageEncoder:.write;Lio/netty/handler/codec/http/HttpObjectEncoder:.encode;Lio/netty/buffer/AbstractByteBufAllocator:.directBuffer;Lio/netty/util/concurrent/FastThreadLocal:.get 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/handler/codec/MessageToMessageEncoder:.write;Lio/netty/handler/codec/http/HttpObjectEncoder:.encode;Ljava/util/ArrayList:.add 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/handler/codec/MessageToMessageEncoder:.write;Lio/netty/util/internal/RecyclableArrayList:.newInstance;Lio/netty/util/concurrent/FastThreadLocal:.get 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/handler/codec/MessageToMessageEncoder:.write;Ljava/util/ArrayList:.ensureExplicitCapacity 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/handler/codec/MessageToMessageEncoder:.write;vtable chunks 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.write 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke;Lio/netty/handler/codec/http/DefaultHttpHeaders:.add0 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke;Lio/netty/handler/codec/http/DefaultHttpHeaders:.set 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke;Lsun/nio/cs/UTF_8$Encoder:.<init>;jbyte_disjoint_arraycopy 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.name;Lorg/mozilla/javascript/ScriptRuntime:.nameOrFunction;Lorg/mozilla/javascript/IdScriptableObject:.get;Lorg/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/handler/codec/http/HttpObjectDecoder:.decode;Lio/netty/buffer/AbstractByteBuf:.forEachByteAsc0;Lio/netty/util/internal/AppendableCharSequence:.append 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/handler/codec/http/HttpObjectDecoder:.decode;Lio/netty/handler/codec/http/HttpHeaders:.isTransferEncodingChunked 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/handler/codec/http/HttpObjectDecoder:.decode;Lio/netty/handler/codec/http/HttpObjectDecoder:.findWhitespace 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/handler/codec/http/HttpObjectDecoder:.decode;Lio/netty/handler/codec/http/HttpObjectDecoder:.readHeaders 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/handler/codec/http/HttpObjectDecoder:.decode;Lio/netty/handler/codec/http/HttpObjectDecoder:.readHeaders;Lio/netty/buffer/AbstractByteBuf:.forEachByteAsc0 2\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/handler/codec/http/HttpObjectDecoder:.decode;Lio/netty/handler/codec/http/HttpObjectDecoder:.readHeaders;Lio/netty/handler/codec/http/HttpHeaders:.hash 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/handler/codec/http/HttpObjectDecoder:.decode;Lio/netty/handler/codec/http/HttpObjectDecoder:.readHeaders;Lio/netty/handler/codec/http/HttpObjectDecoder:.splitHeader 5\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/handler/codec/http/HttpObjectDecoder:.decode;Lio/netty/handler/codec/http/HttpObjectDecoder:.readHeaders;Ljava/util/Arrays:.fill 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite 2\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/AbstractReferenceCountedByteBuf:.release 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lio/netty/buffer/PooledByteBuf:.internalNioBuffer 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/NativeThread:.current 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;  3\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;Java_sun_nio_ch_FileDispatcherImpl_write0 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;sys_write 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;fget_light 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;__srcu_read_lock 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;__tcp_push_pending_frames 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg 2\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;ktime_get_real 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;skb_clone 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_set_skb_tso_segs 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb 2\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_hard_start_xmit 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_pick_tx 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;dev_hard_start_xmit;dev_queue_xmit_nit 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;dev_hard_start_xmit;loopback_xmit 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;netif_rx;netif_rx.part.82;xen_restore_fl_direct 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;netif_rx;netif_rx.part.82;xen_restore_fl_direct_end 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;dma_issue_pending_all 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;__inet_lookup_established 3\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_event_data_recv 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;sock_def_readable;__wake_up_sync_key;check_events;hypercall_page 19\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack 3\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_clean_rtx_queue 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_clean_rtx_queue;bictcp_acked 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_clean_rtx_queue;ktime_get_real;getnstimeofday 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_clean_rtx_queue;ktime_get_real;getnstimeofday;xen_clocksource_get_cycles;xen_clocksource_read 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_clean_rtx_queue;tcp_rtt_estimator 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_clean_rtx_queue;tcp_valid_rtt_meas;tcp_rtt_estimator 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver_finish 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;rcu_bh_qs 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;netif_skb_features 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_output 2\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ktime_get_real;getnstimeofday;xen_clocksource_get_cycles;pvclock_clocksource_read 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ktime_get_real;getnstimeofday;xen_clocksource_get_cycles;xen_clocksource_read;pvclock_clocksource_read 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ktime_get_real;xen_clocksource_get_cycles 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;skb_dst_set_noref 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;lock_sock_nested;_raw_spin_lock_bh;local_bh_disable 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb;__kmalloc_node_track_caller 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb;__kmalloc_node_track_caller;arch_local_irq_save 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb;__phys_addr 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb;get_slab 2\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb;kmem_cache_alloc_node 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;ksize 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;tcp_send_mss;tcp_current_mss;ipv4_mtu 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;tcp_send_mss;tcp_current_mss;tcp_established_options 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;tcp_send_mss;tcp_xmit_size_goal 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;tcp_xmit_size_goal 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;fsnotify 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;fsnotify;__srcu_read_lock 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;rw_verify_area 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;rw_verify_area;apparmor_file_permission 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;rw_verify_area;security_file_permission;apparmor_file_permission;common_file_perm 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;sock_aio_write 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/SocketChannelImpl:.writerCleanup 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.writerCleanup 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/util/Recycler:.recycle 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/ChannelDuplexHandler:.flush 2\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;Lsun/nio/ch/SocketChannelImpl:.read;Ljava/nio/channels/spi/AbstractInterruptibleChannel:.end 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;Lsun/nio/ch/SocketChannelImpl:.read;Lsun/nio/ch/FileDispatcherImpl:.read0;read 2\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;Lsun/nio/ch/SocketChannelImpl:.read;Lsun/nio/ch/FileDispatcherImpl:.read0;read;sys_read 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;Lsun/nio/ch/SocketChannelImpl:.read;Lsun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;Lsun/nio/ch/SocketChannelImpl:.read;Lsun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;do_sync_read 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;Lsun/nio/ch/SocketChannelImpl:.read;Lsun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;__kfree_skb 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;Lsun/nio/ch/SocketChannelImpl:.read;Lsun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_rcv_space_adjust 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;Lsun/nio/ch/SocketChannelImpl:.read;Lsun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_recvmsg;__kfree_skb;skb_release_data 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;Lsun/nio/ch/SocketChannelImpl:.read;Lsun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_recvmsg;__kfree_skb;skb_release_head_state;dst_release 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;Lsun/nio/ch/SocketChannelImpl:.read;Lsun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_recvmsg;_raw_spin_lock_bh 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;Lsun/nio/ch/SocketChannelImpl:.read;Lsun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_recvmsg;skb_copy_datagram_iovec 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;Lsun/nio/ch/SocketChannelImpl:.read;Lsun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_recvmsg;skb_copy_datagram_iovec;copy_user_enhanced_fast_string 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;Lsun/nio/ch/SocketChannelImpl:.read;Lsun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_recvmsg;tcp_cleanup_rbuf 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;Lsun/nio/ch/SocketChannelImpl:.read;Lsun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_recvmsg;tcp_cleanup_rbuf;__tcp_select_window 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;Lsun/nio/ch/SocketChannelImpl:.read;Lsun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;vfs_read;rw_verify_area 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete 1\njava-?;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes 1\njava-?;start_thread;java_start;VMThread::run;VMThread::loop;VMThread::evaluate_operation;VM_Operation::evaluate;VM_ParallelGCFailedAllocation::doit;ParallelScavengeHeap::failed_mem_allocate;PSScavenge::invoke;PSScavenge::invoke_no_policy;PSIsAliveClosure::do_object_b 1\njava-?;start_thread;java_start;VMThread::run;VMThread::loop;VMThread::evaluate_operation;VM_Operation::evaluate;VM_ParallelGCFailedAllocation::doit;ParallelScavengeHeap::failed_mem_allocate;PSScavenge::invoke;PSScavenge::invoke_no_policy;StringTable::unlink_or_oops_do 2\njava-?;start_thread;java_start;VMThread::run;VMThread::loop;VMThread::evaluate_operation;VM_Operation::evaluate;VM_ParallelGCFailedAllocation::doit;ParallelScavengeHeap::failed_mem_allocate;PSScavenge::invoke;PSScavenge::invoke_no_policy;pthread_cond_signal@@GLIBC_2.3.2;system_call_fastpath;sys_futex;do_futex;futex_wake_op 1\njava-?;write;check_events;hypercall_page 3\n"
  },
  {
    "path": "test/results/perf-vertx-stacks-01-collapsed-tid.txt",
    "content": "java-?/3244;start_thread;java_start;GCTaskThread::run;StealTask::do_it;SpinPause 1\njava-?/3245;start_thread;java_start;GCTaskThread::run;StealTask::do_it;ParallelTaskTerminator::offer_termination 1\njava-?/3245;start_thread;java_start;GCTaskThread::run;StealTask::do_it;SpinPause 1\njava-?/3246;start_thread;java_start;GCTaskThread::run;StealTask::do_it;ParallelTaskTerminator::offer_termination 1\njava-?/3247;start_thread;java_start;GCTaskThread::run;ScavengeRootsTask::do_it;ClassLoaderDataGraph::oops_do;ClassLoaderData::oops_do;PSScavengeKlassClosure::do_klass 1\njava-?/3248;start_thread;java_start;GCTaskThread::run;StealTask::do_it;SpinPause 1\njava-?/3249;start_thread;java_start;GCTaskThread::run;StealTask::do_it;SpinPause 1\njava-?/3250;start_thread;java_start;GCTaskThread::run;StealTask::do_it;PSPromotionManager::drain_stacks_depth;oopDesc* PSPromotionManager::copy_to_survivor_space<false>;InstanceKlass::oop_push_contents 1\njava-?/3251;start_thread;java_start;GCTaskThread::run;StealTask::do_it;SpinPause 1\njava-?/3252;start_thread;java_start;GCTaskThread::run;StealTask::do_it;SpinPause 1\njava-?/3253;start_thread;java_start;GCTaskThread::run;StealTask::do_it;ParallelTaskTerminator::offer_termination 1\njava-?/3254;start_thread;java_start;GCTaskThread::run;StealTask::do_it;ParallelTaskTerminator::offer_termination 1\njava-?/3255;start_thread;java_start;GCTaskThread::run;StealTask::do_it;SpinPause 1\njava-?/3256;start_thread;java_start;GCTaskThread::run;StealTask::do_it;ParallelTaskTerminator::offer_termination 1\njava-?/3257;start_thread;java_start;VMThread::run;VMThread::loop;VMThread::evaluate_operation;VM_Operation::evaluate;VM_ParallelGCFailedAllocation::doit;ParallelScavengeHeap::failed_mem_allocate;PSScavenge::invoke;PSScavenge::invoke_no_policy;PSIsAliveClosure::do_object_b 1\njava-?/3257;start_thread;java_start;VMThread::run;VMThread::loop;VMThread::evaluate_operation;VM_Operation::evaluate;VM_ParallelGCFailedAllocation::doit;ParallelScavengeHeap::failed_mem_allocate;PSScavenge::invoke;PSScavenge::invoke_no_policy;StringTable::unlink_or_oops_do 2\njava-?/3257;start_thread;java_start;VMThread::run;VMThread::loop;VMThread::evaluate_operation;VM_Operation::evaluate;VM_ParallelGCFailedAllocation::doit;ParallelScavengeHeap::failed_mem_allocate;PSScavenge::invoke;PSScavenge::invoke_no_policy;pthread_cond_signal@@GLIBC_2.3.2;system_call_fastpath;sys_futex;do_futex;futex_wake_op 1\njava-?/3278;read;check_events;hypercall_page 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/buffer/AbstractByteBufAllocator:.directBuffer 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/buffer/AbstractReferenceCountedByteBuf:.release 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Ljava/util/concurrent/ConcurrentHashMap:.get 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/mozilla/javascript/Context:.getWrapFactory 2\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived 3\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/ScriptableObject:.getParentScope 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/WrapFactory:.wrap;Ljava/util/HashMap:.get 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/WrapFactory:.wrapAsJavaObject 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/WrapFactory:.wrapAsJavaObject;Ljava/util/HashMap:.get 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.getObjectProp 2\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.getObjectProp;Lorg/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.getObjectProp;vtable chunks 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.name;Lorg/mozilla/javascript/IdScriptableObject:.get 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.nameOrFunction;Lorg/mozilla/javascript/ScriptableObject$Slot:.getValue 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/IdScriptableObject:.has 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/IdScriptableObject:.has;Lorg/mozilla/javascript/ScriptableObject:.getSlot 2\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/IdScriptableObject:.put;Lorg/mozilla/javascript/ScriptableObject:.getSlot 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/IdScriptableObject:.setAttributes 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/MemberBox:.invoke 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/WrapFactory:.wrap 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.findFunction 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaObject:.get 2\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.createFunctionActivation;Lorg/mozilla/javascript/IdScriptableObject:.get;Lorg/mozilla/javascript/ScriptableObject:.getSlot 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.createFunctionActivation;Lorg/mozilla/javascript/IdScriptableObject:.put;Lorg/mozilla/javascript/ScriptableObject:.getSlot;Lorg/mozilla/javascript/ScriptableObject:.createSlot 2\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.createFunctionActivation;Lorg/mozilla/javascript/IdScriptableObject:.setAttributes 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.createFunctionActivation;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.getObjectProp;Lorg/mozilla/javascript/ScriptableObject$Slot:.getValue 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.getPropFunctionAndThis;Lorg/mozilla/javascript/NativeJavaObject:.get;Ljava/util/HashMap:.get 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/IdScriptableObject:.get 2\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/IdScriptableObject:.has 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.createFunctionActivation 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.createFunctionActivation;Lorg/mozilla/javascript/IdScriptableObject:.put;Lorg/mozilla/javascript/ScriptableObject:.getSlot;Lorg/mozilla/javascript/ScriptableObject:.createSlot 2\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.createFunctionActivation;Lorg/mozilla/javascript/IdScriptableObject:.setAttributes 2\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.getObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.get;Lorg/mozilla/javascript/ScriptableObject:.getSlot 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.nameOrFunction;Lorg/mozilla/javascript/IdScriptableObject:.get;Lorg/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.findInstanceIdInfo 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.put 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.put;Lorg/mozilla/javascript/ScriptableObject:.getSlot;Lorg/mozilla/javascript/ScriptableObject:.createSlot 3\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/ScriptableObject:.getSlot 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;vtable chunks 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/NativeFunction:.initScriptFunction 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/ScriptRuntime:.createFunctionActivation 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.createFunctionActivation 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.createFunctionActivation;Lorg/mozilla/javascript/IdScriptableObject:.get 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.has 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.put 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.put;Lorg/mozilla/javascript/ScriptableObject:.getSlot;Lorg/mozilla/javascript/ScriptableObject:.createSlot 6\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptableObject:.getParentScope 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.newObject;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;jint_disjoint_arraycopy 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.has 4\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.has;Lorg/mozilla/javascript/ScriptableObject:.getSlot 5\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.put 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.put;Lorg/mozilla/javascript/ScriptableObject:.getSlot 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.put;Lorg/mozilla/javascript/ScriptableObject:.getSlot;Lorg/mozilla/javascript/ScriptableObject:.createSlot 6\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptableObject:.getPrototype 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptableObject:.getParentScope 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/TopLevel:.getBuiltinPrototype 2\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/ScriptRuntime:.name;Lorg/mozilla/javascript/ScriptRuntime:.nameOrFunction;vtable chunks 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.has;Lorg/mozilla/javascript/ScriptableObject:.getSlot 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.createFunctionActivation 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.createFunctionActivation;Lorg/mozilla/javascript/IdScriptableObject:.setAttributes 2\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.createFunctionActivation;Lorg/mozilla/javascript/TopLevel:.getBuiltinPrototype 2\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/optimizer/OptRuntime:.call2;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.setObjectProp;Lorg/mozilla/javascript/IdScriptableObject:.put;Lorg/mozilla/javascript/ScriptableObject:.getSlot;Lorg/mozilla/javascript/ScriptableObject:.createSlot 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/ScriptRuntime:.indexFromString 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/ScriptRuntime:.setObjectElem;Lorg/mozilla/javascript/ScriptRuntime:.indexFromString 2\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0 2\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lio/netty/handler/codec/http/DefaultHttpHeaders:.set 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke 3\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.write 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/handler/codec/MessageToMessageEncoder:.write 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/handler/codec/MessageToMessageEncoder:.write;Lio/netty/buffer/AbstractByteBuf:.writeBytes 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/handler/codec/MessageToMessageEncoder:.write;Lio/netty/handler/codec/http/HttpObjectEncoder:.encode;Lio/netty/buffer/AbstractByteBuf:.writeBytes 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/handler/codec/MessageToMessageEncoder:.write;Lio/netty/handler/codec/http/HttpObjectEncoder:.encode;Lio/netty/buffer/AbstractByteBufAllocator:.directBuffer 2\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/handler/codec/MessageToMessageEncoder:.write;Lio/netty/handler/codec/http/HttpObjectEncoder:.encode;Lio/netty/buffer/AbstractByteBufAllocator:.directBuffer;Lio/netty/util/concurrent/FastThreadLocal:.get 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/handler/codec/MessageToMessageEncoder:.write;Lio/netty/handler/codec/http/HttpObjectEncoder:.encode;Ljava/util/ArrayList:.add 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/handler/codec/MessageToMessageEncoder:.write;Lio/netty/util/internal/RecyclableArrayList:.newInstance;Lio/netty/util/concurrent/FastThreadLocal:.get 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/handler/codec/MessageToMessageEncoder:.write;Ljava/util/ArrayList:.ensureExplicitCapacity 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.write;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lio/netty/handler/codec/MessageToMessageEncoder:.write;vtable chunks 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke;Lio/netty/channel/AbstractChannelHandlerContext:.write;Lorg/vertx/java/core/http/impl/VertxHttpHandler:.write 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke;Lio/netty/handler/codec/http/DefaultHttpHeaders:.add0 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke;Lio/netty/handler/codec/http/DefaultHttpHeaders:.set 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/NativeJavaMethod:.call;Lorg/mozilla/javascript/MemberBox:.invoke;Lsun/reflect/DelegatingMethodAccessorImpl:.invoke;Lsun/nio/cs/UTF_8$Encoder:.<init>;jbyte_disjoint_arraycopy 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lorg/vertx/java/core/net/impl/VertxHandler:.channelRead;Lorg/vertx/java/core/http/impl/DefaultHttpServer$ServerHandler:.doMessageReceived;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vhello_js_1:.call;Lorg/mozilla/javascript/gen/file__home_bgregg_testtest_vert_x_2_1_4_sys_mods_io_vertx_lang_js_1_1_0;Lorg/mozilla/javascript/ScriptRuntime:.name;Lorg/mozilla/javascript/ScriptRuntime:.nameOrFunction;Lorg/mozilla/javascript/IdScriptableObject:.get;Lorg/mozilla/javascript/ScriptableObject$RelinkedSlot:.getValue 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/handler/codec/http/HttpObjectDecoder:.decode;Lio/netty/buffer/AbstractByteBuf:.forEachByteAsc0;Lio/netty/util/internal/AppendableCharSequence:.append 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/handler/codec/http/HttpObjectDecoder:.decode;Lio/netty/handler/codec/http/HttpHeaders:.isTransferEncodingChunked 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/handler/codec/http/HttpObjectDecoder:.decode;Lio/netty/handler/codec/http/HttpObjectDecoder:.findWhitespace 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/handler/codec/http/HttpObjectDecoder:.decode;Lio/netty/handler/codec/http/HttpObjectDecoder:.readHeaders 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/handler/codec/http/HttpObjectDecoder:.decode;Lio/netty/handler/codec/http/HttpObjectDecoder:.readHeaders;Lio/netty/buffer/AbstractByteBuf:.forEachByteAsc0 2\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/handler/codec/http/HttpObjectDecoder:.decode;Lio/netty/handler/codec/http/HttpObjectDecoder:.readHeaders;Lio/netty/handler/codec/http/HttpHeaders:.hash 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/handler/codec/http/HttpObjectDecoder:.decode;Lio/netty/handler/codec/http/HttpObjectDecoder:.readHeaders;Lio/netty/handler/codec/http/HttpObjectDecoder:.splitHeader 5\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelRead;Lio/netty/handler/codec/ByteToMessageDecoder:.channelRead;Lio/netty/handler/codec/http/HttpObjectDecoder:.decode;Lio/netty/handler/codec/http/HttpObjectDecoder:.readHeaders;Ljava/util/Arrays:.fill 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite 2\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/AbstractReferenceCountedByteBuf:.release 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lio/netty/buffer/PooledByteBuf:.internalNioBuffer 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/NativeThread:.current 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;  3\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;Java_sun_nio_ch_FileDispatcherImpl_write0 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;sys_write 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;fget_light 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;__srcu_read_lock 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;__tcp_push_pending_frames 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg 2\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;ktime_get_real 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;skb_clone 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_set_skb_tso_segs 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb 2\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_hard_start_xmit 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_pick_tx 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;dev_hard_start_xmit;dev_queue_xmit_nit 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;dev_hard_start_xmit;loopback_xmit 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;netif_rx;netif_rx.part.82;xen_restore_fl_direct 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;dev_hard_start_xmit;loopback_xmit;netif_rx;netif_rx.part.82;xen_restore_fl_direct_end 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;dma_issue_pending_all 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;__inet_lookup_established 3\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_event_data_recv 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;sock_def_readable;__wake_up_sync_key;check_events;hypercall_page 19\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack 3\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_clean_rtx_queue 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_clean_rtx_queue;bictcp_acked 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_clean_rtx_queue;ktime_get_real;getnstimeofday 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_clean_rtx_queue;ktime_get_real;getnstimeofday;xen_clocksource_get_cycles;xen_clocksource_read 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_clean_rtx_queue;tcp_rtt_estimator 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver;ip_local_deliver_finish;tcp_v4_rcv;tcp_v4_do_rcv;tcp_rcv_established;tcp_ack;tcp_clean_rtx_queue;tcp_valid_rtt_meas;tcp_rtt_estimator 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;__do_softirq;net_rx_action;process_backlog;__netif_receive_skb;ip_rcv;ip_rcv_finish;ip_local_deliver_finish 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;local_bh_enable;do_softirq;call_softirq;rcu_bh_qs 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_local_out;ip_output;ip_finish_output;dev_queue_xmit;netif_skb_features 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ip_queue_xmit;ip_output 2\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ktime_get_real;getnstimeofday;xen_clocksource_get_cycles;pvclock_clocksource_read 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ktime_get_real;getnstimeofday;xen_clocksource_get_cycles;xen_clocksource_read;pvclock_clocksource_read 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;ktime_get_real;xen_clocksource_get_cycles 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;__tcp_push_pending_frames;tcp_write_xmit;tcp_transmit_skb;skb_dst_set_noref 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;lock_sock_nested;_raw_spin_lock_bh;local_bh_disable 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb;__kmalloc_node_track_caller 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb;__kmalloc_node_track_caller;arch_local_irq_save 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb;__phys_addr 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb;get_slab 2\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;__alloc_skb;kmem_cache_alloc_node 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;sk_stream_alloc_skb;ksize 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;tcp_send_mss;tcp_current_mss;ipv4_mtu 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;tcp_send_mss;tcp_current_mss;tcp_established_options 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;tcp_send_mss;tcp_xmit_size_goal 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;do_sync_write;sock_aio_write;do_sock_write.isra.10;inet_sendmsg;tcp_sendmsg;tcp_xmit_size_goal 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;fsnotify 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;fsnotify;__srcu_read_lock 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;rw_verify_area 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;rw_verify_area;apparmor_file_permission 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;rw_verify_area;security_file_permission;apparmor_file_permission;common_file_perm 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/FileDispatcherImpl:.write0;write;system_call_fastpath;sys_write;vfs_write;sock_aio_write 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.write;Lsun/nio/ch/SocketChannelImpl:.writerCleanup 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/buffer/PooledUnsafeDirectByteBuf:.readBytes;Lsun/nio/ch/SocketChannelImpl:.writerCleanup 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelDuplexHandler:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/ChannelOutboundHandlerAdapter:.flush;Lio/netty/channel/AbstractChannelHandlerContext:.flush;Lio/netty/channel/DefaultChannelPipeline$HeadContext:.flush;Lio/netty/channel/AbstractChannel$AbstractUnsafe:.flush0;Lio/netty/channel/nio/AbstractNioByteChannel:.doWrite;Lio/netty/util/Recycler:.recycle 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete;Lio/netty/channel/ChannelDuplexHandler:.flush 2\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/AbstractChannelHandlerContext:.fireChannelReadComplete;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete;Lorg/vertx/java/core/net/impl/VertxHandler:.channelReadComplete 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;Lsun/nio/ch/SocketChannelImpl:.read;Ljava/nio/channels/spi/AbstractInterruptibleChannel:.end 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;Lsun/nio/ch/SocketChannelImpl:.read;Lsun/nio/ch/FileDispatcherImpl:.read0;read 2\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;Lsun/nio/ch/SocketChannelImpl:.read;Lsun/nio/ch/FileDispatcherImpl:.read0;read;sys_read 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;Lsun/nio/ch/SocketChannelImpl:.read;Lsun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;Lsun/nio/ch/SocketChannelImpl:.read;Lsun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;do_sync_read 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;Lsun/nio/ch/SocketChannelImpl:.read;Lsun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;__kfree_skb 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;Lsun/nio/ch/SocketChannelImpl:.read;Lsun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_rcv_space_adjust 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;Lsun/nio/ch/SocketChannelImpl:.read;Lsun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_recvmsg;__kfree_skb;skb_release_data 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;Lsun/nio/ch/SocketChannelImpl:.read;Lsun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_recvmsg;__kfree_skb;skb_release_head_state;dst_release 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;Lsun/nio/ch/SocketChannelImpl:.read;Lsun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_recvmsg;_raw_spin_lock_bh 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;Lsun/nio/ch/SocketChannelImpl:.read;Lsun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_recvmsg;skb_copy_datagram_iovec 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;Lsun/nio/ch/SocketChannelImpl:.read;Lsun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_recvmsg;skb_copy_datagram_iovec;copy_user_enhanced_fast_string 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;Lsun/nio/ch/SocketChannelImpl:.read;Lsun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_recvmsg;tcp_cleanup_rbuf 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;Lsun/nio/ch/SocketChannelImpl:.read;Lsun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;vfs_read;do_sync_read;sock_aio_read;sock_aio_read.part.13;do_sock_read.isra.12;inet_recvmsg;tcp_recvmsg;tcp_cleanup_rbuf;__tcp_select_window 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes;Lsun/nio/ch/SocketChannelImpl:.read;Lsun/nio/ch/FileDispatcherImpl:.read0;read;system_call_fastpath;sys_read;vfs_read;rw_verify_area 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/nio/AbstractNioByteChannel$NioByteUnsafe:.read;Lio/netty/handler/codec/ByteToMessageDecoder:.channelReadComplete 1\njava-?/3278;start_thread;java_start;JavaThread::run;JavaThread::thread_main_inner;thread_entry;JavaCalls::call_virtual;JavaCalls::call_virtual;JavaCalls::call_helper;call_stub;Interpreter;Interpreter;Lio/netty/channel/nio/NioEventLoop:.run;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeys;Lio/netty/channel/nio/NioEventLoop:.processSelectedKeysOptimized;Lio/netty/channel/nio/NioEventLoop:.processSelectedKey;Lio/netty/channel/socket/nio/NioSocketChannel:.doReadBytes 1\njava-?/3278;write;check_events;hypercall_page 3\n"
  },
  {
    "path": "test.sh",
    "content": "#!/bin/bash\n#\n# test.sh - Check flame graph software vs test result files.\n#\n# This is used to detect regressions in the flame graph software.\n# See record-test.sh, which refreshes these files after intended software\n# changes.\n#\n# Currently only tests stackcollapse-perf.pl.\n\nset -euo pipefail\nset -x\nset -v\n\n# ToDo: add some form of --inline, and --inline --context tests. These are\n# tricky since they use addr2line, whose output will vary based on the test\n# system's binaries and symbol tables.\nfor opt in pid tid kernel jit all addrs; do\n  for testfile in test/*.txt ; do\n    echo testing $testfile : $opt\n    outfile=${testfile#*/}\n    outfile=test/results/${outfile%.txt}\"-collapsed-${opt}.txt\"\n    perl ./stackcollapse-perf.pl --\"${opt}\" \"${testfile}\" 2> /dev/null | diff -u - \"${outfile}\"\n    perl ./flamegraph.pl \"${outfile}\" > /dev/null\n  done\ndone\n"
  }
]